Skip to content

Commit

Permalink
dev: formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
sunsingerus committed Jan 23, 2025
1 parent 7123293 commit 327589d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/controller/chi/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ package chi
import (
"context"
"errors"
"github.com/altinity/clickhouse-operator/pkg/model/k8s"
"time"

core "k8s.io/api/core/v1"
Expand Down Expand Up @@ -47,6 +46,7 @@ import (
commonCreator "github.com/altinity/clickhouse-operator/pkg/model/common/creator"
commonMacro "github.com/altinity/clickhouse-operator/pkg/model/common/macro"
commonNormalizer "github.com/altinity/clickhouse-operator/pkg/model/common/normalizer"
"github.com/altinity/clickhouse-operator/pkg/model/k8s"
"github.com/altinity/clickhouse-operator/pkg/model/managers"
"github.com/altinity/clickhouse-operator/pkg/util"
"github.com/altinity/queue"
Expand Down
2 changes: 1 addition & 1 deletion pkg/model/k8s/pod.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func PodHasCrushedContainers(pod *core.Pod) bool {

func PodHasNotReadyContainers(pod *core.Pod) bool {
for _, containerStatus := range pod.Status.ContainerStatuses {
if !containerStatus.Ready {
if !containerStatus.Ready {
// Not ready
return true
}
Expand Down

0 comments on commit 327589d

Please sign in to comment.