Skip to content

Commit

Permalink
Add default value "3m" to image_delay, making it consistent with docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiguangwang committed Aug 6, 2019
1 parent fc55f65 commit fb2ff8b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion drivers/docker/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,10 @@ var (
hclspec.NewAttr("image", "bool", false),
hclspec.NewLiteral("true"),
),
"image_delay": hclspec.NewAttr("image_delay", "string", false),
"image_delay": hclspec.NewDefault(
hclspec.NewAttr("image_delay", "string", false),
hclspec.NewLiteral("3m"),
),
"container": hclspec.NewDefault(
hclspec.NewAttr("container", "bool", false),
hclspec.NewLiteral("true"),
Expand Down

0 comments on commit fb2ff8b

Please sign in to comment.