Replace PM2 definitions during profile reset
This commit is contained in:
@@ -975,11 +975,12 @@ export class GatewayOrchestrator implements GatewayOrchestratorHandle {
|
|||||||
try {
|
try {
|
||||||
await this.processManager.stop(name);
|
await this.processManager.stop(name);
|
||||||
} catch {
|
} catch {
|
||||||
try {
|
// Deleting the definition below also terminates a process that raced with stop.
|
||||||
await this.processManager.delete(name);
|
}
|
||||||
} catch (error) {
|
try {
|
||||||
failures.push(`${name}: ${error instanceof Error ? error.message : String(error)}`);
|
await this.processManager.delete(name);
|
||||||
}
|
} catch (error) {
|
||||||
|
failures.push(`${name}: ${error instanceof Error ? error.message : String(error)}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (failures.length > 0) {
|
if (failures.length > 0) {
|
||||||
|
|||||||
@@ -153,6 +153,7 @@ describe('GatewayOrchestrator first-class operations', () => {
|
|||||||
|
|
||||||
expect(harness.statuses).toEqual(['STOPPED']);
|
expect(harness.statuses).toEqual(['STOPPED']);
|
||||||
expect(harness.stopped).toEqual(['sammo:che:2:game-api', 'sammo:che:2:turn-daemon']);
|
expect(harness.stopped).toEqual(['sammo:che:2:game-api', 'sammo:che:2:turn-daemon']);
|
||||||
|
expect(harness.deleted).toEqual(['sammo:che:2:game-api', 'sammo:che:2:turn-daemon']);
|
||||||
expect(harness.completions).toEqual(['SUCCEEDED']);
|
expect(harness.completions).toEqual(['SUCCEEDED']);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user