You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: framework/extensions/src/main/java/org/apache/cloudstack/framework/extensions/manager/ExtensionsManagerImpl.java
+16-16Lines changed: 16 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -152,7 +152,7 @@ public class ExtensionsManagerImpl extends ManagerBase implements ExtensionsMana
Copy file name to clipboardExpand all lines: plugins/hypervisors/external/src/main/java/org/apache/cloudstack/hypervisor/external/provisioner/ExternalPathPayloadProvisioner.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -631,18 +631,18 @@ public void cleanupExtensionPath(String extensionName, String extensionRelativeP
631
631
}
632
632
if (!Files.isDirectory(filePath) && !Files.isRegularFile(filePath)) {
633
633
thrownewCloudRuntimeException(
634
-
String.format("Failed to cleanup extension entry-point: %s for extension: %s as it either " +
634
+
String.format("Failed to cleanup path: %s for extension: %s as it either " +
635
635
"does not exist or is not a regular file/directory",
636
636
extensionName, extensionRelativePath));
637
637
}
638
638
if (!FileUtil.deleteRecursively(filePath)) {
639
639
thrownewCloudRuntimeException(
640
-
String.format("Failed to delete extension entry-point: %s for extension: %s",
640
+
String.format("Failed to delete path: %s for extension: %s",
641
641
extensionName, filePath));
642
642
}
643
643
} catch (IOExceptione) {
644
644
thrownewCloudRuntimeException(
645
-
String.format("Failed to cleanup extension entry-point: %s for extension: %s due to: %s",
645
+
String.format("Failed to cleanup path: %s for extension: %s due to: %s",
0 commit comments