We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3279e78 commit be9e272Copy full SHA for be9e272
internal/hotreload/hotreload.go
@@ -16,12 +16,16 @@ import (
16
)
17
18
var (
19
- oldRobotUser string
20
- oldRobotPassword string
+ oldRobotUser string
+ oldRobotPassword string
21
+ // RobotReloadCounter gets incremented when the credentials get reloaded.
22
+ // Mosty used for testing.
23
RobotReloadCounter uint64
24
robotMutex sync.Mutex
25
- oldHcloudToken string
26
+ oldHcloudToken string
27
+ // HcloudTokenReloadCounter gets incremented when the credentials get reloaded.
28
29
HcloudTokenReloadCounter uint64
30
hcloudMutex sync.Mutex
31
0 commit comments