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