Skip to content

Commit b490dbf

Browse files
committed
fix wrong int to string conversion in BKP plugin
1 parent 499b3fa commit b490dbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/integration/bookkeeping/plugin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ func (p *Plugin) getPendingRunStopsForEnvs(envIds []uid.ID) map[uid.ID]string {
160160

161161
for _, envId := range envIds {
162162
if runStop, ok := p.pendingRunStops[envId.String()]; ok {
163-
out[envId] = string(runStop)
163+
out[envId] = strconv.FormatInt(runStop, 10)
164164
}
165165
}
166166
return out

0 commit comments

Comments
 (0)