fix: Insert a space in the error message (#3225)

pull/3235/head
Leo Takaoka 4 years ago committed by GitHub
parent 5d6343c1d0
commit 931fdcbb93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      cmd/docker-driver/config.go

@ -291,7 +291,7 @@ func parseConfig(logCtx logger.Info) (*config, error) {
if relabelString, ok := logCtx.Config[cfgRelabelKey]; ok && relabelString != "" {
relabeled, err := relabelConfig(relabelString, labels)
if err != nil {
return nil, fmt.Errorf("error applying relabel config: %s err:%s", relabelString, err)
return nil, fmt.Errorf("error applying relabel config: %s err: %s", relabelString, err)
}
labels = relabeled
}

Loading…
Cancel
Save