*: replace 3600 seconds with 1 hour

Signed-off-by: Samuel Karp <skarp@amazon.com>
This commit is contained in:
Samuel Karp
2018-08-02 11:39:14 -07:00
parent b8f4c7a9bd
commit 9665a2650a
4 changed files with 7 additions and 7 deletions

View File

@@ -113,7 +113,7 @@ var createCommand = cli.Command{
cli.DurationFlag{
Name: "expires, x",
Usage: "expiration of lease (0 value will not expire)",
Value: 24 * 3600 * time.Second,
Value: 24 * time.Hour,
},
},
Action: func(context *cli.Context) error {