Skip to content

Commit

Permalink
Fix issue with error not being returned
Browse files Browse the repository at this point in the history
  • Loading branch information
dveeden committed Nov 20, 2024
1 parent 9accafb commit de2ec58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion replication/event.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ func (e *PreviousGTIDsEvent) Decode(data []byte) error {
if len(data) == 8 {
return nil
}
fmt.Errorf("uuidCount %d doesn't match data length %d", uuidCount, len(data))
return fmt.Errorf("uuidCount %d doesn't match data length %d", uuidCount, len(data))
}

previousGTIDSets := make([]string, uuidCount)
Expand Down

0 comments on commit de2ec58

Please sign in to comment.