Skip to content

Commit 7456993

Browse files
missed : sign.
1 parent 6f9c7cb commit 7456993

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/providers/clickhouse/storage.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -903,7 +903,7 @@ func NewStorage(config *model.ChStorageParams, transfer *dp_model.Transfer, opts
903903
if errors.IsFatalClickhouseError(err) {
904904
return "", backoff.Permanent(xerrors.Errorf("unable to select clickhouse version: %w", err))
905905
}
906-
return "", xerrors.Errorf("unable to select clickhouse: %s version: %w", config.String(), err)
906+
return "", xerrors.Errorf("unable to select clickhouse: %s: version: %w", config.String(), err)
907907
}
908908
return version, nil
909909
}, backoff.NewExponentialBackOff(), util.BackoffLoggerWarn(logger.Log, "version resolver"))

0 commit comments

Comments
 (0)