Skip to content

Commit

Permalink
Extend the backoff for waiting on application launch (#1741)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianyh authored Feb 1, 2025
1 parent 24a5d3f commit daf308a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Amethyst/Model/ApplicationObservation.swift
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ struct ApplicationObservation<Delegate: ApplicationObservationDelegate> {
func addObservers() -> Observable<Void> {
return _addObservers().retry { errorTrigger in
errorTrigger.enumerated().flatMap { count, error -> Observable<Int> in
guard count < 4 else {
guard count < 6 else {
return .error(error)
}

Expand Down

0 comments on commit daf308a

Please sign in to comment.