Skip to content

Commit

Permalink
fix: rollback the reconnect after 10MB behavior after the fix for omg… (
Browse files Browse the repository at this point in the history
#1530)

* fix: rollback the reconnect after 10MB behavior after the fix for omg is deployed

* .
  • Loading branch information
yirutang authored Feb 11, 2022
1 parent 74a67f7 commit 737bd0e
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -405,15 +405,16 @@ public Builder setIgnoreUnknownFields(boolean ignoreUnknownFields) {
}

/**
* Setter for a reconnectAfter10M, temporaily workaround for omg/48020. Fix for the omg is
* supposed to roll out by 2/11/2022 Friday. If you set this to True, your write will be slower
* (0.75MB/s per connection), but your writes will not be stuck as a sympton of omg/48020.
* @Deprecated Setter for a reconnectAfter10M, temporaily workaround for omg/48020. Fix for the
* omg is supposed to roll out by 2/11/2022 Friday. If you set this to True, your write will be
* slower (0.75MB/s per connection), but your writes will not be stuck as a sympton of
* omg/48020.
*
* @param reconnectAfter10M
* @return Builder
*/
public Builder setReconnectAfter10M(boolean reconnectAfter10M) {
this.reconnectAfter10M = reconnectAfter10M;
this.reconnectAfter10M = false;
return this;
}

Expand Down

0 comments on commit 737bd0e

Please sign in to comment.