diff --git a/internal/grpc/services/gateway/storageprovider.go b/internal/grpc/services/gateway/storageprovider.go index fa1c63e8fad..883842eedbd 100644 --- a/internal/grpc/services/gateway/storageprovider.go +++ b/internal/grpc/services/gateway/storageprovider.go @@ -48,9 +48,9 @@ type transferClaims struct { } func (s *svc) sign(_ context.Context, target string) (string, error) { - // Tus sends a separate request to the datagateway service for every chunk. - // For large files, this can take a long time, so we extend the expiration - // for 10 minutes. TODO: Make this configurable. + // Tus sends a separate request to the datagateway service for every chunk. + // For large files, this can take a long time, so we extend the expiration + // for 10 minutes. TODO: Make this configurable. ttl := time.Duration(s.c.TransferExpires) * 10 * time.Minute claims := transferClaims{ StandardClaims: jwt.StandardClaims{