We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d0cb1f commit 346e20dCopy full SHA for 346e20d
src/AzureBlobPlugin.cs
@@ -50,6 +50,9 @@ public Task Initialize(IPluginLogger logger)
50
if (ReflectionHelper.IsCalledViaReflection())
51
throw new InvalidOperationException(Resources.ReflectionBasedAccessIsNotAllowed);
52
53
+ if (!_isInitialized)
54
+ throw new InvalidOperationException($"Plugin '{Metadata.Name}' v{Metadata.Version} is not initialized.");
55
+
56
var operationParameter = parameters.ToObject<OperationParameter>();
57
var operation = operationParameter.Operation;
58
0 commit comments