-
-
Notifications
You must be signed in to change notification settings - Fork 654
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Retry failed message sends #3120
Comments
borisyankov
added a commit
to borisyankov/zulip-mobile
that referenced
this issue
Jan 14, 2019
Fixes zulip#3120 ...
borisyankov
added a commit
to borisyankov/zulip-mobile
that referenced
this issue
Jan 14, 2019
Fixes zulip#3120 ...
borisyankov
added a commit
to borisyankov/zulip-mobile
that referenced
this issue
Jan 14, 2019
Fixes zulip#3120 Try sending messages and keep retrying if sending fails. Using `progressiveTimeout` we make sure we are not trying too often. Thanks to `state.session.outboxSending` we are sure there will be no two loops at the same time.
gnprice
pushed a commit
to borisyankov/zulip-mobile
that referenced
this issue
Jan 14, 2019
Fixes zulip#3120. Try sending messages and keep retrying if sending fails. Using `progressiveTimeout` we make sure we are not trying too often. Thanks to `state.session.outboxSending` we are sure there will be no two loops at the same time.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In
trySendMessages
we do sendoutbox
messages.If we fail to send them we are not retrying.
We are 'randomly' retrying by dispatching
dispatch(trySendMessages());
in few places:We should probably replace all these with a loop that periodically retries, regardless of these specific conditions.
The text was updated successfully, but these errors were encountered: