Skip to content

Commit 9665a26

Browse files
committed
*: replace 3600 seconds with 1 hour
Signed-off-by: Samuel Karp <[email protected]>
1 parent b8f4c7a commit 9665a26

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

cmd/ctr/commands/leases/leases.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ var createCommand = cli.Command{
113113
cli.DurationFlag{
114114
Name: "expires, x",
115115
Usage: "expiration of lease (0 value will not expire)",
116-
Value: 24 * 3600 * time.Second,
116+
Value: 24 * time.Hour,
117117
},
118118
},
119119
Action: func(context *cli.Context) error {

lease.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func (c *Client) WithLease(ctx context.Context) (context.Context, func(context.C
3434

3535
ls := c.LeasesService()
3636

37-
l, err := ls.Create(ctx, leases.WithRandomID(), leases.WithExpiration(24*3600*time.Second))
37+
l, err := ls.Create(ctx, leases.WithRandomID(), leases.WithExpiration(24*time.Hour))
3838
if err != nil {
3939
return nil, nil, err
4040
}

metadata/content.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -420,12 +420,12 @@ func (cs *contentStore) Writer(ctx context.Context, opts ...content.WriterOpt) (
420420
}
421421
if !leased {
422422
// Add timestamp to allow aborting once stale
423-
// When lease is set the ingest shoudl be aborted
423+
// When lease is set the ingest should be aborted
424424
// after lease it belonged to is deleted.
425425
// Expiration can be configurable in the future to
426426
// give more control to the daemon, however leases
427427
// already give users more control of expiration.
428-
expireAt := time.Now().UTC().Add(24 * 3600 * time.Second)
428+
expireAt := time.Now().UTC().Add(24 * time.Hour)
429429
if err := writeExpireAt(expireAt, bkt); err != nil {
430430
return err
431431
}

metadata/gc_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func TestGCRoots(t *testing.T) {
5555
addContent("ns2", dgst(9), nil),
5656
addIngest("ns1", "ingest-1", "", nil), // will be seen as expired
5757
addIngest("ns1", "ingest-2", "", timeIn(0)), // expired
58-
addIngest("ns1", "ingest-3", "", timeIn(3600*time.Second)),
58+
addIngest("ns1", "ingest-3", "", timeIn(time.Hour)),
5959
addIngest("ns2", "ingest-4", "", nil),
6060
addIngest("ns2", "ingest-5", dgst(8), nil),
6161
addIngest("ns2", "ingest-6", "", nil), // added to expired lease
@@ -73,7 +73,7 @@ func TestGCRoots(t *testing.T) {
7373
addLeaseSnapshot("ns2", "l2", "overlay", "sn6"),
7474
addLeaseContent("ns2", "l1", dgst(4)),
7575
addLeaseContent("ns2", "l2", dgst(5)),
76-
addLease("ns2", "l3", labelmap(string(labelGCExpire), time.Now().Add(3600*time.Second).Format(time.RFC3339))),
76+
addLease("ns2", "l3", labelmap(string(labelGCExpire), time.Now().Add(time.Hour).Format(time.RFC3339))),
7777
addLeaseContent("ns2", "l3", dgst(6)),
7878
addLeaseSnapshot("ns2", "l3", "overlay", "sn7"),
7979
addLeaseIngest("ns2", "l3", "ingest-4"),
@@ -156,7 +156,7 @@ func TestGCRemove(t *testing.T) {
156156
addSnapshot("ns1", "overlay", "sn3", "", labelmap(string(labelGCRoot), "always")),
157157
addSnapshot("ns1", "overlay", "sn4", "", nil),
158158
addSnapshot("ns2", "overlay", "sn1", "", nil),
159-
addLease("ns1", "l1", labelmap(string(labelGCExpire), time.Now().Add(3600*time.Second).Format(time.RFC3339))),
159+
addLease("ns1", "l1", labelmap(string(labelGCExpire), time.Now().Add(time.Hour).Format(time.RFC3339))),
160160
addLease("ns2", "l2", labelmap(string(labelGCExpire), time.Now().Format(time.RFC3339))),
161161
}
162162

0 commit comments

Comments
 (0)