Skip to content

Commit

Permalink
Fix long line lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlycoconuts committed Apr 2, 2024
1 parent 673c217 commit e7bb62d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion api/turing/cluster/servicebuilder/fluentd.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ func (sb *clusterSvcBuilder) NewFluentdService(
{Name: "FLUENTD_LOG_PATH", Value: "/cache/log/bq_load_logs.*.buffer"},
{Name: "FLUENTD_GCP_JSON_KEY_PATH", Value: secretMountPath + secretKeyNameRouter},
{Name: "FLUENTD_BUFFER_LIMIT", Value: "10g"},
{Name: "FLUENTD_FLUSH_INTERVAL_SECONDS", Value: strconv.Itoa(fluentdConfig.FlushIntervalSeconds * FluentdReplicaCount)},
{Name: "FLUENTD_FLUSH_INTERVAL_SECONDS",
Value: strconv.Itoa(fluentdConfig.FlushIntervalSeconds * FluentdReplicaCount)},
{Name: "FLUENTD_TAG", Value: fluentdConfig.Tag},
{Name: "FLUENTD_GCP_PROJECT", Value: tableSplit[0]},
{Name: "FLUENTD_BQ_DATASET", Value: tableSplit[1]},
Expand Down

0 comments on commit e7bb62d

Please sign in to comment.