Action that runs komodo.execute_stack_exec fails with 500 error #650

Open
opened 2025-10-31 15:17:08 -05:00 by GiteaMirror · 0 comments
Owner

Originally created by @sloria on GitHub (Oct 29, 2025).

To reproduce: create an action that only contains an action that runs komodo.execute_stack_exec.

await komodo.execute_stack_exec({
  stack: `caddy-vps`,
  service: 'caddy',
  shell: 'bash',
  command: 'caddy reload --config /etc/caddy/Caddyfile'
}, {
  onLine: (line) => console.log(line),
  onFinish: (code) => console.log('Finished. Code: ', code)
})

When run, the following error occurs:

🚨 Action exited early with errors 🚨
Status: 500
{
  "error": "Failed to execute container exec command on periphery",
  "trace": [
    "500 Internal Server Error",
    "Stdout stream terminated before start sentinel received"
  ]
}

komodo version: 1.19.5
Relevant Discord thread: https://discord.com/channels/1272479750065094760/1382360673215975447

Originally created by @sloria on GitHub (Oct 29, 2025). To reproduce: create an action that only contains an action that runs `komodo.execute_stack_exec`. ```typescript await komodo.execute_stack_exec({ stack: `caddy-vps`, service: 'caddy', shell: 'bash', command: 'caddy reload --config /etc/caddy/Caddyfile' }, { onLine: (line) => console.log(line), onFinish: (code) => console.log('Finished. Code: ', code) }) ``` When run, the following error occurs: ``` 🚨 Action exited early with errors 🚨 Status: 500 { "error": "Failed to execute container exec command on periphery", "trace": [ "500 Internal Server Error", "Stdout stream terminated before start sentinel received" ] } ``` komodo version: 1.19.5 Relevant Discord thread: https://discord.com/channels/1272479750065094760/1382360673215975447
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/komodo#650
No description provided.