We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f51e2f5 commit 649cc55Copy full SHA for 649cc55
1 file changed
go/binlog/gomysql_reader.go
@@ -75,7 +75,7 @@ func (this *GoMySQLReader) handleAuthError(err error, context string) error {
75
this.authFailureCount++
76
77
if this.migrationContext.MaxAuthFailures > 0 && this.authFailureCount >= this.migrationContext.MaxAuthFailures {
78
- return fmt.Errorf("authentication failed %d times (max: %d) during %s, aborting to prevent firewall blocking: %v",
+ return fmt.Errorf("authentication failed %d times (max: %d) during %s, aborting to prevent firewall blocking: %w",
79
this.authFailureCount, this.migrationContext.MaxAuthFailures, context, err)
80
}
81
0 commit comments