184225
diff --git a/lib/ipc_setup.c b/lib/ipc_setup.c
184225
index 43dc3e7..b3f3412 100644
184225
--- a/lib/ipc_setup.c
184225
+++ b/lib/ipc_setup.c
184225
@@ -843,12 +843,13 @@ qb_ipcs_uc_recv_and_auth(int32_t sock, struct qb_ipcs_service *s)
184225
 	setsockopt(sock, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on));
184225
 #endif
184225
 
184225
-	res = s->poll_fns.dispatch_add(QB_LOOP_MED,
184225
-					data->sock,
184225
-					POLLIN | POLLPRI | POLLNVAL,
184225
-					data, process_auth);
184225
+	res = s->poll_fns.dispatch_add(s->poll_priority,
184225
+	                               data->sock,
184225
+	                               POLLIN | POLLPRI | POLLNVAL,
184225
+	                               data, process_auth);
184225
 	if (res < 0) {
184225
-		qb_util_log(LOG_DEBUG, "Failed to process AUTH for fd (%d)", data->sock);
184225
+		qb_util_log(LOG_DEBUG, "Failed to arrange for AUTH for fd (%d)",
184225
+		            data->sock);
184225
 		close(sock);
184225
 		destroy_ipc_auth_data(data);
184225
 	}