From 0fa284d9d0712ea319672fa4a423d3c591a2e39a Mon Sep 17 00:00:00 2001 From: Todd Beets Date: Tue, 27 Jun 2023 13:52:47 -0700 Subject: [PATCH] Fix typo in JSON fragment (JSON boolean was quoted) that will cause a JSON validation error in API call against 2.10-Dev. --- adr/ADR-28.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/adr/ADR-28.md b/adr/ADR-28.md index c6dd16d..0bf9b11 100644 --- a/adr/ADR-28.md +++ b/adr/ADR-28.md @@ -7,6 +7,11 @@ | Status | Implemented | | Tags | jetstream, server | +## Update History +| Date | Author | Description | +|------------|---------|----------------------------------------------------| +| 2023-06-27 | @tbeets | Fix typo on JSON boolean in `headers_only` example | + ## Context and Problem Statement In some use cases it is useful for a subscriber to monitor messages that have been ingested by a stream (captured to @@ -55,7 +60,7 @@ Here is an example of a stream configuration with the RePublish option specified "republish": { "src": "one.>", "dest": "uno.>", - "headers_only": "false" + "headers_only": false }, "retention": "limits", ... omitted ...