Skip to content

Commit 3c35eee

Browse files
author
Steve Brunton
committed
match params with called func signature
Signed-off-by: Steve Brunton <[email protected]>
1 parent 2159fae commit 3c35eee

File tree

1 file changed

+1
-1
lines changed
  • pkg/volume/provisioner/fss

1 file changed

+1
-1
lines changed

pkg/volume/provisioner/fss/fss.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ func NewFilesystemProvisioner(logger *zap.SugaredLogger, client client.Interface
8080
}
8181

8282
func (fsp *filesystemProvisioner) getOrCreateFileSystem(ctx context.Context, logger *zap.SugaredLogger, ad, displayName string) (*fss.FileSystem, error) {
83-
summary, err := fsp.client.FSS().GetFileSystemSummaryByDisplayName(ctx, ad, fsp.compartmentID, displayName)
83+
summary, err := fsp.client.FSS().GetFileSystemSummaryByDisplayName(ctx, fsp.compartmentID, ad, displayName)
8484
if err != nil && !client.IsNotFound(err) {
8585
return nil, err
8686
}

0 commit comments

Comments
 (0)