Skip to content

Commit

Permalink
chore: lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
iamKunalGupta committed Mar 20, 2024
1 parent c45d1ae commit 76a609a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions flow/connectors/clickhouse/clickhouse.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import (
"database/sql"
"errors"
"fmt"
"golang.org/x/mod/semver"
"net/url"
"os"
"strings"
Expand All @@ -16,6 +15,7 @@ import (
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/service/s3"
"go.temporal.io/sdk/log"
"golang.org/x/mod/semver"

metadataStore "github.com/PeerDB-io/peer-flow/connectors/external_metadata"
"github.com/PeerDB-io/peer-flow/connectors/utils"
Expand Down Expand Up @@ -165,7 +165,9 @@ func NewClickhouseConnector(
}
}
if !supportsSessionToken {
return nil, fmt.Errorf("please provide AWS access credentials explicitly or upgrade to version >= %v, current version is %s", minSupportedClickhouseVersions, clickHouseVersion)
return nil, fmt.Errorf(
"please provide AWS access credentials explicitly or upgrade to version >= %v, current version is %s",
minSupportedClickhouseVersions, clickHouseVersion)
}
}

Expand Down

0 comments on commit 76a609a

Please sign in to comment.