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
Deposit returns internal server error despite deposit being successful #2283
Milestone
Comments
@kelsos is this still an issue for you? |
@LefterisJP I just managed to replicate it so it still happens on master. |
LefterisJP
added a commit
to LefterisJP/raiden
that referenced
this issue
Sep 3, 2018
Fix raiden-network#2283 If two calls on the deposit happen one after another then a `ValueError` will be thrown for the second one. We don't catch `ValueErrors` which will result in a crash (500 Interval server error). Turned them to `DepositMismatch` exception and also made the error string more informative
@kelsos Did you use the WebUI for it? I suspect that the WebUI has retries built into it. |
@LefterisJP yes It was through the webui I suspected something like this but I have to verify if that's the case. |
rakanalh
pushed a commit
that referenced
this issue
Sep 3, 2018
Fix #2283 If two calls on the deposit happen one after another then a `ValueError` will be thrown for the second one. We don't catch `ValueErrors` which will result in a crash (500 Interval server error). Turned them to `DepositMismatch` exception and also made the error string more informative
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Problem Definition
I have a channel with a
total_deposit
of 51 and I change the total deposit to 61The request blocks as expected and after a while throws and returns a 500 internal server error. Despite the error, the deposit is successful. The next time the webui polls the channel endpoint I am getting the properly updated
total_deposit
.System Description
Here add a detailed description of your system, e.g. output of the following script:
The text was updated successfully, but these errors were encountered: