Skip to content

Commit

Permalink
fix(IoT): priority inversion runtime warning (aws-amplify#4575)
Browse files Browse the repository at this point in the history
  • Loading branch information
atierian authored and gabek committed Aug 31, 2023
1 parent ec0ea97 commit 1a55054
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions AWSIoT/Internal/SocketRocket/AWSSRWebSocket.m
Expand Up @@ -1844,6 +1844,7 @@ + (NSRunLoop *)AWSSR_networkRunLoop {
dispatch_once(&onceToken, ^{
networkThread = [[_SRRunLoopThread alloc] init];
networkThread.name = @"com.squareup.SocketRocket.NetworkThread";
networkThread.qualityOfService = NSQualityOfServiceUserInitiated;
[networkThread start];
networkRunLoop = networkThread.runLoop;
});
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
@@ -1,7 +1,8 @@
# AWS Mobile SDK for iOS CHANGELOG
## Unreleased

-Features for next release
- **AWSIoT**
- Fixed a potential point of priority inversion, resolving new Xcode 14 threat performance warning.

## 2.30.2

Expand Down

0 comments on commit 1a55054

Please sign in to comment.