mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-01 19:17:58 +00:00
Allow Default for TimeDurationSecond values to be time.Duration (#6934)
This commit is contained in:
@@ -579,6 +579,8 @@ func (s *FieldSchema) DefaultOrZero() interface{} {
|
||||
return s.Type.Zero()
|
||||
}
|
||||
result = int(valInt64)
|
||||
case time.Duration:
|
||||
result = int(inp.Seconds())
|
||||
default:
|
||||
return s.Type.Zero()
|
||||
}
|
||||
|
||||
@@ -564,6 +564,11 @@ func TestFieldSchemaDefaultOrZero(t *testing.T) {
|
||||
60,
|
||||
},
|
||||
|
||||
"default duration time.Duration": {
|
||||
&FieldSchema{Type: TypeDurationSecond, Default: 60 * time.Second},
|
||||
60,
|
||||
},
|
||||
|
||||
"default duration not set": {
|
||||
&FieldSchema{Type: TypeDurationSecond},
|
||||
0,
|
||||
|
||||
Reference in New Issue
Block a user