Conversation
Deploying windmill with
|
| Latest commit: |
3ec83d4
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://ad6936c3.windmill.pages.dev |
| Branch Preview URL: | https://branch-name-debounce-nodes.windmill.pages.dev |
- Add sibling check in parent-walking loop to avoid killing branchall siblings - Remove stale .sqlx cache files from earlier iterations - Remove single-variant FlowNodeDebounceResult enum, use Result<()> - Parse flow value once in version guard, recurse into nested modules - Fix Svelte reactivity when switching selected flow modules - Fix Tab indentation in FlowModuleComponent - Use integer types in OpenAPI spec for debounce fields Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
/updatesqlx |
|
Starting sqlx update... |
|
❌ SQLx update failed. Please check the workflow logs for details. |
|
/updatesqlx |
|
Starting sqlx update... |
|
❌ SQLx update failed. Please check the workflow logs for details. |
59f9724 to
8ca4d12
Compare
|
/updatesqlx |
|
Starting sqlx update... |
|
❌ SQLx update failed. Please check the workflow logs for details. |
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…branchone)" This reverts commit fa4820d.
|
/ai review this pr |
|
Claude finished @diegoimbert's task in 2m 42s —— View job Review of PR #8324: [ee] Debounce node
OverviewThis PR adds per-node (step-level) debouncing to flow modules, extending the existing flow-level debouncing feature. It adds a Overall the feature is well-structured, the tests are thorough, and the code reuses existing patterns (e.g., 🔴 Potential Issues1. Debounce runs inside parallel job loop without guard
The debouncing code runs inside the This could cause unexpected behavior — multiple parallel sub-jobs of the same step would debounce against each other, canceling sibling jobs within the same flow run. Suggestion: Add a guard like #[cfg(feature = "private")]
if len == 1 {
if let Some(ref debouncing) = module.debouncing {
// ... debounce logic
}
}2.
|
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
Claude finished @diegoimbert's task in 5m 1s —— View job Review of PR #8324: [ee] Debounce node
OverviewThis PR adds per-node (step-level) debouncing for flow modules, extending the existing flow-level debouncing feature. It includes:
The feature is well-structured and reuses existing patterns cleanly. Findings1. Debounce runs inside parallel job loop — intentional?
The debounce code runs inside the I see this was addressed and then intentionally reverted (commits 2.
|
9e0e459 to
6f25470
Compare
No description provided.