[ci-force] missed case
This commit is contained in:
parent
3e2c5bf18a
commit
5a88f9d331
1 changed files with 2 additions and 0 deletions
|
|
@ -82,6 +82,8 @@ func (p *execPlugin) HydrateOpts(opts []byte) error {
|
||||||
allString[k] = vt
|
allString[k] = vt
|
||||||
case int64:
|
case int64:
|
||||||
allString[k] = strconv.Itoa(int(vt))
|
allString[k] = strconv.Itoa(int(vt))
|
||||||
|
case float64:
|
||||||
|
allString[k] = strconv.Itoa(int(vt))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue