mirror of
https://github.com/moghtech/komodo.git
synced 2026-05-07 10:53:18 -05:00
[GH-ISSUE #672] Procedure execution empty param not exported but required for import #7426
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @satwell on GitHub (Jul 21, 2025).
Original GitHub issue: https://github.com/moghtech/komodo/issues/672
I found a case where the TOML for a procedure exported by the UI cannot be loaded by resource sync. This happens when the executions params are left empty by default. Additionally, checking the resource into git and letting the webhook trigger a resource sync causes the "Run Sync" to run forever.
Steps to reproduce:
Run Sync never completes, the last stage shown is "Read remote resources" with stderr
INFO: reading resources from "/repo-cache/.... The Komodo Core container log shows this warning:2025-07-21T13:56:12.808745Z WARN ResourceSyncWebhook{id="687ceee563b4bbc54dbb1d60"}: core::listener::router: Failed at running webhook for resource sync 687ceee563b4bbc54dbb1d60 | Found file errors. Cannot execute sync.After restarting Komodo Core, the Info tab shows this error:
If I add
execution.params.pattern = ""to the execution in that procedure, the sync works. Although it's still missing in the Toml exported on the Procedures page.@mbecker20 commented on GitHub (Aug 30, 2025):
Should be fixed in 1.19.0 release.
Edit: nvm its not i was thinking of a similar issue