We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c707c5 commit 455bc44Copy full SHA for 455bc44
pkg/deployment/resources/deployment_health.go
@@ -180,5 +180,9 @@ dbloop:
180
func (r *Resources) GetShardSyncStatus() bool {
181
r.shardSync.mutex.Lock()
182
defer r.shardSync.mutex.Unlock()
183
+ if r.context.GetSpec().GetMode() != api.DeploymentModeCluster {
184
+ // Shard sync status is only applicable for clusters
185
+ return true
186
+ }
187
return r.shardSync.allInSync
188
}
0 commit comments