We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Warehouses
true
false
According to https://segment.com/docs/connections/storage/warehouses/faq/#send-data-to-specific-warehouses, we should be able to control which Warehouses we want to use via Integrations Object. On latest version of @segmentanalytics-next (npm:next-1.77.0), if I provide the Integrations Object as:
@segmentanalytics-next
npm:next-1.77.0
Warehouses: { all: false, }
The Segment event calls (track, page) show Warehouses: true in request payload instead. Same if I try to pass warehouseIds:
track
page
Warehouses: true
warehouseIds
(...) Warehouses: { all: false, warehouseIds: ["3dasf42dd"] }
The only Integrations Object config that's exactly passed in event calls are Warehouses: true or Warehouses: false.
Warehouses: false
The text was updated successfully, but these errors were encountered:
The Segment event calls (track, page) show Warehouses: true in request payload instead.
Hey @lucasassisrosa, I'm not able to reproduce this locally -- our library should proxy whatever you have in the integrations object.
I just did:
analytics.track( 'foo', {}, { integrations: { Warehouses: { all: false, warehouseIds: ["3dasf42dd"] } } } )
Locally (network calls):
Segment Debugger:
Sorry, something went wrong.
Closing, as unable to repro
No branches or pull requests
According to https://segment.com/docs/connections/storage/warehouses/faq/#send-data-to-specific-warehouses, we should be able to control which Warehouses we want to use via Integrations Object. On latest version of
@segmentanalytics-next
(npm:next-1.77.0
), if I provide the Integrations Object as:The Segment event calls (
track
,page
) showWarehouses: true
in request payload instead. Same if I try to passwarehouseIds
:The only Integrations Object config that's exactly passed in event calls are
Warehouses: true
orWarehouses: false
.Environment
The text was updated successfully, but these errors were encountered: