Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vkuznet committed Aug 29, 2022
1 parent dfa057b commit 5038d9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbs/migration_requests.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func (r *MigrationRequest) Insert(tx *sql.Tx) error {
if err != nil {
if strings.Contains(err.Error(), "unique") {
// if we try to insert the same migration input we'll continue
log.Printf("warning: skip %+v since it is already inserted in another request, error %v", v, err)
log.Printf("warning: skip %+v since it is already inserted in another request, error %v", r, err)
return nil
}
if utils.VERBOSE > 0 {
Expand Down

0 comments on commit 5038d9b

Please sign in to comment.