Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CBG-3762: [3.1.4 backport] Respond to _blipsync with BLIP context ID #6673

Merged
merged 1 commit into from
Feb 6, 2024
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
2 changes: 2 additions & 0 deletions db/blip_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ func newBlipHandler(ctx context.Context, bc *BlipSyncContext, db *Database, seri
type BLIPSyncContextClientType string

const (
BLIPCorrelationIDResponseHeader = "X-Correlation-ID"

BLIPSyncClientTypeQueryParam = "client"

BLIPClientTypeCBL2 BLIPSyncContextClientType = "cbl2"
Expand Down
1 change: 1 addition & 0 deletions rest/blip_sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ func (h *handler) handleBLIPSync() error {

// Overwrite the existing logging context with the blip context ID
h.rqCtx = base.CorrelationIDLogCtx(h.ctx(), base.FormatBlipContextID(blipContext.ID))
h.response.Header().Set(db.BLIPCorrelationIDResponseHeader, blipContext.ID)

// Create a new BlipSyncContext attached to the given blipContext.
ctx := db.NewBlipSyncContext(h.rqCtx, blipContext, h.db, h.formatSerialNumber(), db.BlipSyncStatsForCBL(h.db.DbStats))
Expand Down
Loading