Skip to content

Commit 5816656

Browse files
Merge pull request #307 from nshttpd/nshttpd/fss-provision-error
match params with called func signature
2 parents 3ed1e8a + 3c35eee commit 5816656

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)