gs: replace usage of context.Background()

This commit is contained in:
Michael Eischer
2023-04-08 11:59:44 +02:00
parent 616926d2c1
commit c934c99d41
3 changed files with 3 additions and 4 deletions

View File

@@ -801,7 +801,7 @@ func create(ctx context.Context, s string, opts options.Options) (restic.Backend
case "s3":
be, err = s3.Create(ctx, cfg.(s3.Config), rt)
case "gs":
be, err = gs.Create(cfg.(gs.Config), rt)
be, err = gs.Create(ctx, cfg.(gs.Config), rt)
case "azure":
be, err = azure.Create(ctx, cfg.(azure.Config), rt)
case "swift":