fix: fix broken build

For some reason a PR we merged passed the build even though it was
missing various func parameters. This commmit fixes it.

Signed-off-by: Milos Gajdos <milosthegajdos@gmail.com>
This commit is contained in:
Milos Gajdos 2023-11-02 23:14:13 -07:00
parent bd0e476910
commit 7686bdc294
No known key found for this signature in database
5 changed files with 5 additions and 1 deletions

View file

@ -94,7 +94,7 @@ func init() {
maxConcurrency: 8,
}
return New(parameters)
return New(context.Background(), parameters)
}
testsuites.RegisterSuite(func() (storagedriver.StorageDriver, error) {

View file

@ -1,6 +1,7 @@
package middleware
import (
"context"
"crypto/rand"
"encoding/json"
"fmt"

View file

@ -1,6 +1,7 @@
package middleware
import (
"context"
"fmt"
"net/http"
"net/url"

View file

@ -1,6 +1,7 @@
package middleware
import (
"context"
"testing"
"gopkg.in/check.v1"

View file

@ -2,6 +2,7 @@ package s3
import (
"bytes"
"context"
"crypto/rand"
"errors"
"fmt"