You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
switch case code in aggregator.go wouldn't be any response for updated case :
switch res := tryUpdateRound(&w, r, ip, round); res {
case updated:
case notUpdated:
should use switch case like this:
switch res := tryUpdateRound(&w, r, ip, round); res {
case updated, notUpdated:
The text was updated successfully, but these errors were encountered:
switch case code in aggregator.go wouldn't be any response for updated case :
switch res := tryUpdateRound(&w, r, ip, round); res {
case updated:
case notUpdated:
should use switch case like this:
switch res := tryUpdateRound(&w, r, ip, round); res {
case updated, notUpdated:
The text was updated successfully, but these errors were encountered: