Skip to content

Commit 5365d7a

Browse files
committed
Run only one worker for mao queue
The mao queue has minimum load. Using only one worker simplifies and ease debugging and logging
1 parent 8ef1259 commit 5365d7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/machine-api-operator/start.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ func startControllers(ctx *ControllerContext) {
125125
ctx.ClientBuilder.KubeClientOrDie(componentName),
126126
ctx.ClientBuilder.OpenshiftClientOrDie(componentName),
127127
recorder,
128-
).Run(2, ctx.Stop)
128+
).Run(1, ctx.Stop)
129129
}
130130

131131
func startMetricsCollectionAndServer(ctx *ControllerContext) {

0 commit comments

Comments
 (0)