Skip to content

Commit

Permalink
CAPD: fix panic in DockerMachinePool reconcilation
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Büringer [email protected]
  • Loading branch information
sbueringer committed Aug 27, 2021
1 parent 31b6d2c commit 2b7402a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ type DockerMachinePoolReconciler struct {
// +kubebuilder:rbac:groups="",resources=secrets;,verbs=get;list;watch

func (r *DockerMachinePoolReconciler) Reconcile(ctx context.Context, req ctrl.Request) (res ctrl.Result, rerr error) {
log := ctrl.LoggerFrom(ctx, "docker-machine-pool", req.NamespacedName)
log := ctrl.LoggerFrom(ctx, "docker-machine-pool", req.NamespacedName.String())

// Fetch the DockerMachinePool instance.
dockerMachinePool := &infrav1exp.DockerMachinePool{}
Expand Down

0 comments on commit 2b7402a

Please sign in to comment.