diff --git a/go/tasks/plugins/k8s/dask/dask.go b/go/tasks/plugins/k8s/dask/dask.go index bdbcc7961..b9cbc3460 100755 --- a/go/tasks/plugins/k8s/dask/dask.go +++ b/go/tasks/plugins/k8s/dask/dask.go @@ -320,7 +320,7 @@ func (p daskResourceHandler) GetTaskPhase(ctx context.Context, pluginContext k8s OccurredAt: &occurredAt, } - // There is a short period between the `DaskJob` resource being created and `Status.JobStatus` being set by the `dask-operator`. + // There is a short period between the `DaskJob` resource being created and `Status.JobStatus` being set by the `dask-operator`. // In that period, the `JobStatus` will be an empty string. We're treating this as Initializing/Queuing. isQueued := status == "" || status == daskAPI.DaskJobCreated ||