4

-(NSRunLoop *)runLoop;

{

dispatch_group_wait(_waitGroup, DISPATCH_TIME_FOREVER);
return _runLoop;

}

error:- Thread running at QOS_CLASS_USER_INTERACTIVE waiting on a lower QoS thread running at QOS_CLASS_DEFAULT. Investigate ways to avoid priority inversions

Saurabh Sharma
  • 1,671
  • 2
  • 13
  • 16
  • Seems to be a new warning in XCode 14, since it's inside a third party lib, I guess their repo/ticket manager should be used for that? – Larme Oct 10 '22 at 10:13
  • Do you get any solutions? – Mahesh May 04 '23 at 08:51
  • You can add `networkThread.qualityOfService = NSQualityOfServiceUserInitiated;` to method `+ (NSRunLoop *)SR_networkRunLoop` as indicated at the project: https://github.com/facebookincubator/SocketRocket/issues/661#issuecomment-1703842082 – Martijn Sep 02 '23 at 14:22

0 Answers0