labgate 0.5.1 → 0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/container.js +1 -1
- package/dist/lib/ui.js +1 -1
- package/package.json +1 -1
package/dist/lib/container.js
CHANGED
|
@@ -704,7 +704,7 @@ function printSessionInfo(session, sessionId, runtime) {
|
|
|
704
704
|
['Timeout', timeoutLabel],
|
|
705
705
|
['Blocked', `${session.config.filesystem.blocked_patterns.length} patterns`],
|
|
706
706
|
...(session.config.audit.enabled ? [['Audit', (0, config_js_1.getLogDir)(session.config)]] : []),
|
|
707
|
-
['Settings', 'http://
|
|
707
|
+
['Settings', 'http://localhost:7700'],
|
|
708
708
|
]);
|
|
709
709
|
console.error('');
|
|
710
710
|
if ((0, runtime_js_1.isApptainerFamily)(runtime) && mode !== 'host') {
|
package/dist/lib/ui.js
CHANGED
|
@@ -252,7 +252,7 @@ function startUI(port, standalone = true) {
|
|
|
252
252
|
});
|
|
253
253
|
server.listen(port, '127.0.0.1', () => {
|
|
254
254
|
const actualPort = server.address()?.port ?? port;
|
|
255
|
-
log.step(`Settings: http://
|
|
255
|
+
log.step(`Settings: http://localhost:${actualPort}`);
|
|
256
256
|
if (standalone) {
|
|
257
257
|
log.step('Press Ctrl+C to stop');
|
|
258
258
|
}
|