fix: harden docker api validation, handle sftp errors, and fix node manager ui

This commit is contained in:
SaelixCode
2026-03-18 14:13:07 -04:00
parent 69e86a0a37
commit 4bd80e29bf
5 changed files with 43 additions and 13 deletions
+3 -2
View File
@@ -86,8 +86,9 @@ export class FileSystemService {
}
return stackNames;
} catch (error) {
console.error('Error reading stacks:', error);
} catch (error: any) {
const nodeName = NodeRegistry.getInstance().getNode(this.nodeId)?.name || 'Unknown';
console.warn(`[SFTP] Failed to fetch stacks for Node ${nodeName}: ${error.message || error}`);
return [];
}
}