Skip to content

Commit

Permalink
fix Serkan's PR comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kutluhanmetin committed Nov 3, 2023
1 parent 3cb980a commit 64e39bc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion base/commands/migration/migration_stages.go
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,9 @@ func maybePrintWarnings(ctx context.Context, ec plug.ExecContext, ci *hazelcast.
ec.Logger().Error(err)
return
}
ec.PrintlnUnnecessary("* " + strings.Join(warnings, "\n* "))
if len(warnings) <= 5 {
ec.PrintlnUnnecessary("* " + strings.Join(warnings, "\n* "))
}
}

func querySingleRow(ctx context.Context, ci *hazelcast.ClientInternal, query string) (any, error) {
Expand Down

0 comments on commit 64e39bc

Please sign in to comment.