Skip to content

Commit daf308a

Browse files
authored
Extend the backoff for waiting on application launch (#1741)
1 parent 24a5d3f commit daf308a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Amethyst/Model/ApplicationObservation.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ struct ApplicationObservation<Delegate: ApplicationObservationDelegate> {
165165
func addObservers() -> Observable<Void> {
166166
return _addObservers().retry { errorTrigger in
167167
errorTrigger.enumerated().flatMap { count, error -> Observable<Int> in
168-
guard count < 4 else {
168+
guard count < 6 else {
169169
return .error(error)
170170
}
171171

0 commit comments

Comments
 (0)