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?
Workflow:
Zotero SyncJob:
zotero-syncRun:
#1011Commit:
d98f6105Ref:
refs/heads/mainStep:
6A step in this CI job failed. Check the workflow run logs for details.
Root cause (job 3924 log, run #1011): the mail-sync step fails with 'No such option: --merge-dupes'. The workflow (generated from stack.toml) passes --merge-dupes to stack bib sync-zotero inside the api container, but the running api image is fhirworx/api:a03801fb (three weeks old) and predates that option (added with the dedupe work, #665). Every nightly since 2026-08-27 failed the same way, so no mail-ingested or FR-rule items have reached Zotero for two weeks. Fix: roll the api image (COMMIT_SHA in .env, docker compose build api && docker compose up -d api mail-poller — mail-poller shares the image), then dispatch the workflow once by hand. The stale duplicates #667–#683 and #704 close with this one when the next run is green.
Resolved: Zotero Sync run #1025 (workflow_dispatch, 2026-09-11) succeeded after rolling the api image to
f7c3134. Root cause was image drift: the workflow passes --merge-dupes (added 2026-08-26, #665) to stack bib sync-zotero inside the api container, whose image (a03801fb) predated it; the first re-roll then hit a second latent break (the CPT parser imported rex → fsspec at module level, absent from the cli extra) fixed inf7c3134with a regression test. Closing the auto-filed duplicates; the deploy-rollout note now records that workflow-invoked CLI changes need the api image rolled.