refactor: simplify rollback error handling in rollback function

- Removed try-catch block in the rollback function to streamline error handling, allowing for direct propagation of errors from the rollbackApplication call.
- This change enhances code readability and maintains the functionality of the rollback process.
This commit is contained in:
Mauricio Siu
2025-12-02 00:56:27 -06:00
parent fbf840bf6e
commit 18e609313b

View File

@@ -162,18 +162,13 @@ export const rollback = async (rollbackId: string) => {
if (!result.fullContext) {
throw new Error("Rollback context not found");
}
try {
// Use the full context for rollback
await rollbackApplication(
application.appName,
result.image || "",
application.serverId,
result.fullContext,
);
} catch (error) {
console.error(error);
throw new Error("Failed to rollback application");
}
// Use the full context for rollback
await rollbackApplication(
application.appName,
result.image || "",
application.serverId,
result.fullContext,
);
};
const rollbackApplication = async (