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
@@ -148,7 +148,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
@@ -564,18 +564,18 @@ public void cleanupExtensionPath(String extensionName, String extensionRelativeP
564
564
}
565
565
if (!Files.isDirectory(filePath) && !Files.isRegularFile(filePath)) {
566
566
thrownewCloudRuntimeException(
567
-
String.format("Failed to cleanup extension entry-point: %s for extension: %s as it either " +
567
+
String.format("Failed to cleanup path: %s for extension: %s as it either " +
568
568
"does not exist or is not a regular file/directory",
569
569
extensionName, extensionRelativePath));
570
570
}
571
571
if (!FileUtil.deleteRecursively(filePath)) {
572
572
thrownewCloudRuntimeException(
573
-
String.format("Failed to delete extension entry-point: %s for extension: %s",
573
+
String.format("Failed to delete path: %s for extension: %s",
574
574
extensionName, filePath));
575
575
}
576
576
} catch (IOExceptione) {
577
577
thrownewCloudRuntimeException(
578
-
String.format("Failed to cleanup extension entry-point: %s for extension: %s due to: %s",
578
+
String.format("Failed to cleanup path: %s for extension: %s due to: %s",
0 commit comments