Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,14 @@ def _create_svm_lib(self, svm_name: str) -> NetAppMinimalLibrary:
# now set the backend configuration name
CONF.set_override("volume_backend_name", child_grp, group=child_grp)
# return an instance of the library scoped to one SVM
# netapp_mode=proxy is necessary to quiet the driver from reporting that
# its not
return NetAppMinimalLibrary(
self.DRIVER_NAME, "NVMe", configuration=child_cfg, **self._init_kwargs
self.DRIVER_NAME,
"NVMe",
configuration=child_cfg,
netapp_mode="proxy",
**self._init_kwargs,
)

@staticmethod
Expand Down
Loading