From 71c39c087c7a3109462200004fcfc2d3af2293e1 Mon Sep 17 00:00:00 2001 From: eDO Team Date: Mon, 21 Jul 2025 17:16:35 -0700 Subject: [PATCH] Fix warning for Xcode 26. PiperOrigin-RevId: 785631865 --- Channel/Sources/EDOSocket.m | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Channel/Sources/EDOSocket.m b/Channel/Sources/EDOSocket.m index 3f6246b..ed872cd 100644 --- a/Channel/Sources/EDOSocket.m +++ b/Channel/Sources/EDOSocket.m @@ -175,7 +175,9 @@ + (void)connectWithTCPPort:(UInt16)port queue:(dispatch_queue_t)queue connectedBlock:(EDOSocketConnectedBlock)block { block = block ?: gNoOpHandlerBlock; - queue = queue ?: dispatch_queue_create("com.google.edo.connectSocket", DISPATCH_QUEUE_SERIAL); + dispatch_queue_attr_t queueAttributes = + dispatch_queue_attr_make_with_qos_class(DISPATCH_QUEUE_SERIAL, QOS_CLASS_USER_INITIATED, 0); + queue = queue ?: dispatch_queue_create("com.google.edo.connectSocket", queueAttributes); int socketErr = 0; dispatch_fd_t socketFD = edo_CreateSocket(&socketErr);