Skip to content

Commit

Permalink
fix: Insert a space in the error message
Browse files Browse the repository at this point in the history
  • Loading branch information
takaokanbe authored Jan 25, 2021
1 parent 0208071 commit d0bde18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/docker-driver/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit d0bde18

Please sign in to comment.