Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions jobs/reconcile-account-topics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "reconcile-account-topics",
"private": true,
"dependencies": {
"@fedify/vocab": "2.2.5",
"@fedify/webfinger": "2.2.5",
"@fedify/vocab": "2.3.0",
"@fedify/webfinger": "2.3.0",
"mysql2": "3.22.5"
}
}
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"@biomejs/biome": "2.5.1",
"@cucumber/cucumber": "13.0.0",
"@faker-js/faker": "10.5.0",
"@fedify/cli": "2.2.5",
"@fedify/cli": "2.3.0",
"@types/html-to-text": "9.0.4",
"@types/jsonwebtoken": "9.0.10",
"@types/node": "22.20.0",
Expand All @@ -64,12 +64,12 @@
"wiremock-captain": "4.1.3"
},
"dependencies": {
"@fedify/fedify": "2.2.5",
"@fedify/hono": "2.2.5",
"@fedify/redis": "2.2.5",
"@fedify/vocab": "2.2.5",
"@fedify/vocab-runtime": "2.2.5",
"@fedify/webfinger": "2.2.5",
"@fedify/fedify": "2.3.0",
"@fedify/hono": "2.3.0",
"@fedify/redis": "2.3.0",
"@fedify/vocab": "2.3.0",
"@fedify/vocab-runtime": "2.3.0",
"@fedify/webfinger": "2.3.0",
"@google-cloud/opentelemetry-cloud-trace-exporter": "3.0.0",
"@google-cloud/opentelemetry-cloud-trace-propagator": "0.21.0",
"@google-cloud/pubsub": "5.3.1",
Expand Down
10 changes: 10 additions & 0 deletions src/configuration/registrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,16 @@ export function registerDependencies(
kv: fedifyKv,
queue: process.env.USE_MQ === 'true' ? queue : undefined,
manuallyStartQueue: process.env.MANUALLY_START_QUEUE === 'true',
// Fedify >=2.3.0 enables an outbound delivery circuit breaker
// by default for queued outbox delivery. When a remote host's
// circuit opens, Fedify "holds" activities by re-enqueuing
// them with a delay - but our GCloudPubSubPushMessageQueue
// drops any delayed message (see mq.ts) because we rely on
// Pub/Sub native retrial plus our own per-inbox delivery
// backoff. With the circuit breaker on, Fedify's "retry later"
// therefore becomes a silent dropped delivery, so we disable
// it and keep our own backoff as the single mechanism.
circuitBreaker: false,
skipSignatureVerification:
process.env.SKIP_SIGNATURE_VERIFICATION === 'true' &&
['development', 'testing'].includes(
Expand Down
Loading
Loading