Skip to content

Commit

Permalink
chore: lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
iamKunalGupta committed Nov 5, 2024
1 parent c601bcf commit a066bde
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion flow/activities/maintenance_activity.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ package activities
import (
"context"
"fmt"
"google.golang.org/protobuf/types/known/timestamppb"
"log/slog"
"time"

"github.com/jackc/pgx/v5"
"github.com/jackc/pgx/v5/pgxpool"
"go.temporal.io/sdk/activity"
"go.temporal.io/sdk/client"
"google.golang.org/protobuf/types/known/timestamppb"

"github.com/PeerDB-io/peer-flow/alerting"
"github.com/PeerDB-io/peer-flow/generated/protos"
Expand Down
4 changes: 2 additions & 2 deletions flow/cmd/maintenance.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import (
"crypto/tls"
"errors"
"fmt"
"github.com/aws/smithy-go/ptr"
"log/slog"
"os"

"github.com/aws/smithy-go/ptr"
"go.temporal.io/sdk/client"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"
Expand All @@ -32,9 +32,9 @@ type MaintenanceCLIParams struct {
}

type StartMaintenanceResult struct {
SkippedReason *string `json:"skippedReason,omitempty"`
APIVersion string `json:"apiVersion,omitempty"`
CLIVersion string `json:"cliVersion,omitempty"`
SkippedReason *string `json:"skippedReason,omitempty"`
Skipped bool `json:"skipped,omitempty"`
}

Expand Down

0 comments on commit a066bde

Please sign in to comment.