We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5816656 commit 89bc79cCopy full SHA for 89bc79c
pkg/volume/provisioner/fss/fss.go
@@ -80,7 +80,7 @@ func NewFilesystemProvisioner(logger *zap.SugaredLogger, client client.Interface
80
}
81
82
func (fsp *filesystemProvisioner) getOrCreateFileSystem(ctx context.Context, logger *zap.SugaredLogger, ad, displayName string) (*fss.FileSystem, error) {
83
- summary, err := fsp.client.FSS().GetFileSystemSummaryByDisplayName(ctx, fsp.compartmentID, ad, displayName)
+ summary, err := fsp.client.FSS().GetFileSystemSummaryByDisplayName(ctx, ad, fsp.compartmentID, displayName)
84
if err != nil && !client.IsNotFound(err) {
85
return nil, err
86
0 commit comments