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 499b3fa commit b490dbfCopy full SHA for b490dbf
core/integration/bookkeeping/plugin.go
@@ -160,7 +160,7 @@ func (p *Plugin) getPendingRunStopsForEnvs(envIds []uid.ID) map[uid.ID]string {
160
161
for _, envId := range envIds {
162
if runStop, ok := p.pendingRunStops[envId.String()]; ok {
163
- out[envId] = string(runStop)
+ out[envId] = strconv.FormatInt(runStop, 10)
164
}
165
166
return out
0 commit comments