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
When using `-cut-over-exponential-backoff` with `-default-retries`
greater than `64`, the sleep interval will overflow and immediately
begin retrying in rapid succession. This commit corrects the backoff
algorithm and adds test for both "retry operation" functions.
Copy file name to clipboardexpand all lines: go/logic/migrator.go
+8-7
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,7 @@ import (
24
24
25
25
var (
26
26
ErrMigratorUnsupportedRenameAlter=errors.New("ALTER statement seems to RENAME the table. This is not supported, and you should run your RENAME outside gh-ost.")
0 commit comments