Describe the bug
CONFIGURATION.md lists this setting:
| limits.event.createdAt.minNegativeDelta | Maximum number of secodns an event's created_at can be in the past. ... |
The actual key read by the code and shipped in resources/default-settings.yaml
is maxNegativeDelta, not minNegativeDelta:
resources/default-settings.yaml → createdAt: { maxNegativeDelta: 0 }
src/handlers/event-message-handler.ts and
src/app/static-mirroring-worker.ts → limits.createdAt?.maxNegativeDelta
An operator copying the documented key name will silently get no effect, because minNegativeDelta is never read. (There is also a typo, "secodns" → "seconds", on the same line.)
Expected behavior
Document the key as limits.event.createdAt.maxNegativeDelta and fix the typo.
System
Linux, Docker
Describe the bug
CONFIGURATION.mdlists this setting:| limits.event.createdAt.minNegativeDelta | Maximum number of secodns an event's created_at can be in the past. ... |
The actual key read by the code and shipped in
resources/default-settings.yamlis
maxNegativeDelta, notminNegativeDelta:resources/default-settings.yaml→createdAt: { maxNegativeDelta: 0 }src/handlers/event-message-handler.tsandsrc/app/static-mirroring-worker.ts→limits.createdAt?.maxNegativeDeltaAn operator copying the documented key name will silently get no effect, because
minNegativeDeltais never read. (There is also a typo, "secodns" → "seconds", on the same line.)Expected behavior
Document the key as
limits.event.createdAt.maxNegativeDeltaand fix the typo.System
Linux, Docker