Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pkg/apply/apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -510,10 +510,11 @@ func (t *TopicApplier) checkExistingState(
}
}
} else {
log.Warnf(
log.Errorf(
"One or more replicas are not in-sync; there may be an ongoing migration:\n%s",
admin.FormatTopicPartitions(outOfSync, t.brokers),
)
return errors.New("One or more replicas are not in-sync; we are likely horizontally scaling the cluster that this topic is on")
}

return nil
Expand Down