-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
autoupdater: use different logfield than operation for retryer
Do not use the event logfield to assign a name for the operation that the retryer runs. It can already be in reuse, resulting in 2 event fields. Use a new logfield called "operation" instead. Also fix an issue where logfields got appended to a passed logfields slice in updatePRWithBase. This can cause that the wrong logfields are displayed in some messages.
- Loading branch information
Showing
3 changed files
with
12 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package logfields | ||
|
||
import "go.uber.org/zap" | ||
|
||
func Operation(val string) zap.Field { | ||
return zap.String("operation", val) | ||
} |