From e1ab606abdd8ee4759adb8f3992920e17ca215ba Mon Sep 17 00:00:00 2001 From: Gregory Newman-Smith Date: Mon, 18 May 2026 15:00:49 +0100 Subject: [PATCH 1/2] CBG-5367: metadata store as feed argument --- tap.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tap.go b/tap.go index ede98d3..68068f4 100644 --- a/tap.go +++ b/tap.go @@ -90,6 +90,7 @@ type FeedArguments struct { CheckpointPrefix string // Key of checkpoint doc to save state in, if non-empty Scopes map[string][]string // Collection names to stream - map keys are scopes FeedContent FeedContent // Type of content to send in feed + MetadataStore DataStore // MetadataStore overrides where DCP checkpoint documents are persisted. If nil, the default data store is used. } // FeedContent controls the content sent in the feed From dcaed0c11947ad34bfbe8f643fcbbde3b11a3c2f Mon Sep 17 00:00:00 2001 From: Gregory Newman-Smith Date: Mon, 18 May 2026 15:01:48 +0100 Subject: [PATCH 2/2] update comment --- tap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tap.go b/tap.go index 68068f4..a2e9bf4 100644 --- a/tap.go +++ b/tap.go @@ -90,7 +90,7 @@ type FeedArguments struct { CheckpointPrefix string // Key of checkpoint doc to save state in, if non-empty Scopes map[string][]string // Collection names to stream - map keys are scopes FeedContent FeedContent // Type of content to send in feed - MetadataStore DataStore // MetadataStore overrides where DCP checkpoint documents are persisted. If nil, the default data store is used. + MetadataStore DataStore // MetadataStore overrides where DCP checkpoint documents are persisted. } // FeedContent controls the content sent in the feed