-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix infinite loop #1003
fix infinite loop #1003
Conversation
@@ -233,6 +234,9 @@ func (r *ReplicationStatusReconciler) runReplicationStatus(ctx context.Context, | |||
opts []replicationstatus.Option) (err error) { | |||
timeout := vmeta.GetReplicationTimeout(r.Vrep.Annotations) | |||
pollingFrequency := vmeta.GetReplicationPollingFrequency(r.Vrep.Annotations) | |||
if pollingFrequency <= 0 { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove these 3 lines.
Change VReplicator concurrency to 3 |
The concurrent value also needs to be changed in "helm-charts/verticadb-operator/values.yaml", "helm-charts/verticadb-operator/README.md" and "config/manager/operator-envs", |
"helm-charts/verticadb-operator/values.yaml", "helm-charts/verticadb-operator/README.md" have been updated. |
1 fix 0 poolingfrequency issue
2 fix status parsing issue
3 fix timeout status update issue.