diff --git a/pkg/database/postgres.go b/pkg/database/postgres.go index cff9d4e..7680441 100644 --- a/pkg/database/postgres.go +++ b/pkg/database/postgres.go @@ -29,7 +29,7 @@ func NewPostgresqlConnection() OtterSpace { } } -func (p postgresqlConnection) Connect(ctx context.Context, endpoint string, username string, password string, database string, port int, ssl string, timezone string) error { +func (p postgresqlConnection) Connect(_ context.Context, endpoint string, username string, password string, database string, port int, ssl string, timezone string) error { dsn := fmt.Sprintf("host=%s user=%s password=%s dbname=%s port=%d sslmode=%s TimeZone=%s", endpoint, username, password, database, port, ssl, timezone) var err error