Skip to content

Commit

Permalink
chore: increase timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
siepra committed Apr 12, 2024
1 parent ac38e8c commit c2205ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/mobile/e2e/utils/consts/timeouts.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const BASIC = 5000
export const LONG = 20000
export const STARTUP = 90000
export const STARTUP = 120000
2 changes: 1 addition & 1 deletion packages/mobile/ios/Quiet/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ - (void) initWebsocketConnection {
* Delay used below can't cause any race condition as websocket won't connect until data server starts listening anyway.
*/
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), ^{
NSTimeInterval delayInSeconds = 70;
NSTimeInterval delayInSeconds = 90;
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayInSeconds * NSEC_PER_SEC));
dispatch_after(popTime, dispatch_get_main_queue(), ^(void) {
[[self.bridge moduleForName:@"CommunicationModule"] sendDataPortWithPort:self.dataPort socketIOSecret:self.socketIOSecret];
Expand Down

0 comments on commit c2205ca

Please sign in to comment.