Hook loading does not allow relative importing
All 'plugin' alike systems within the framework use imp.load and check for decorator metadata to load in the dynamic configurable function. Because imp.load loads a single file, not a module, relative importing is not possible.
I'd recommend loading plugins differently: specifying plugin directories for all types and loading them usingimportlib
implementation of importlib fixed by:
https://github.com/openvstorage/framework-extensions/pull/209 https://github.com/openvstorage/framework/pull/2266
Package information: openvstorage-2.13.5-dev.1551342559.9291142
Aftermath brought update issues.
Fixed by:
https://github.com/openvstorage/framework/pull/2268 https://github.com/openvstorage/framework-extensions/pull/211