chilly-beach-26366
05/30/2022, 12:44 PMvictorious-oil-12722
05/30/2022, 2:22 PMnarrow-motherboard-63429
05/30/2022, 2:32 PMminiature-judge-92521
05/30/2022, 3:52 PMstocky-thailand-79762
05/31/2022, 10:51 AMUnhandled promise rejection [RangeError: Maximum call stack size exceeded.]
This appears to happens during the call to rudderClient.setup
With logging turned up I see these messages.
LOG RudderSDK: Debug: setup: created config
ERROR Unhandled promise rejection [RangeError: Maximum call stack size exceeded.]
LOG RudderSDK: Debug: setup: setup completed
LOG Rudder Client Setup Completed
LOG Rudder Client Callback registered
I have stepped through the native code implementation for the setup
call and everything seems fine in there.
We are seeing application life cycle events being recorded in both RudderStack and AppsFlyer, so we think that the configuration is correct.
If we try to run this in a production build the app will exit almost immediately due to the unhandled promise.
Does anyone know anything about this, or experienced anything similar?thankful-electrician-16984
05/31/2022, 12:04 PMsteep-byte-42023
05/31/2022, 4:43 PMpanic: [[ gw ]]: idx: 1 != 0 and prevMax: 14830172 >= minID.Int64: 14830155 of table: gw_jobs_330 [recovered]
What could be causing this and how can we fix it?rapid-breakfast-34593
05/31/2022, 5:48 PMfuture-nest-36254
05/31/2022, 7:06 PMambitious-breakfast-83504
06/01/2022, 7:00 AMambitious-breakfast-83504
06/01/2022, 7:00 AMambitious-breakfast-83504
06/01/2022, 7:00 AMambitious-breakfast-83504
06/01/2022, 7:00 AMambitious-breakfast-83504
06/01/2022, 7:00 AMflaky-article-11631
06/01/2022, 10:45 AMflaky-article-11631
06/01/2022, 10:46 AMworried-tailor-13264
06/01/2022, 12:18 PMclean-animal-34153
06/01/2022, 8:02 PMNo entry in the writeKeyToWorkspaceMap table
. I was able to fix it by changing the password from ""
to no password.ambitious-breakfast-83504
06/02/2022, 6:06 AMambitious-breakfast-83504
06/02/2022, 6:07 AMthankful-electrician-16984
06/02/2022, 10:52 AMlemon-dog-49453
06/02/2022, 11:41 AMstale-refrigerator-26788
06/02/2022, 1:59 PMrapid-breakfast-34593
06/02/2022, 2:48 PMmerge
events are being generated (see attached screenshot).
Looking at the source code for rudderlabs/rudder-transformer
it seems like it does a merge
even when userId
and anonymousId
are the same. The reason Iβm providing an anonymousId
along with the userId
relates to my earlier question regarding Leanplum, as apparently anonymousId
is a required prop for the Leanplum transformer.
Can this be resolved somehow?
// rudder-transformer/v0/destinations/mp/transform.js
if (message.userId && message.anonymousId && destination.Config.apiSecret) {
// Use this block when our userids are changed to UUID V4.
// const trackParameters = {
// event: "$identify",
// properties: {
// $identified_id: message.userId,
// $anon_id: message.anonymousId,
// token: destination.Config.token
// }
// };
// const identifyTrackResponse = responseBuilderSimple(
// trackParameters,
// message,
// type,
// destination.Config
// );
// identifyTrackResponse.endpoint =
// destination.Config.dataResidency === "eu"
// ? "<https://api-eu.mixpanel.com/track/>"
// : "<https://api.mixpanel.com/track/>";
// returnValue.push(identifyTrackResponse);
const trackParameters = {
event: "$merge",
properties: {
$distinct_ids: [message.userId, message.anonymousId],
token: destination.Config.token
}
};
const identifyTrackResponse = responseBuilderSimple(
trackParameters,
message,
type,
destination.Config
);
identifyTrackResponse.endpoint =
destination.Config.dataResidency === "eu"
? "<https://api-eu.mixpanel.com/import/>"
: "<https://api.mixpanel.com/import/>";
identifyTrackResponse.headers = {
Authorization: `Basic ${Buffer.from(
`${destination.Config.apiSecret}:`
).toString("base64")}`
};
returnValue.push(identifyTrackResponse);
}
aloof-truck-82115
06/02/2022, 4:25 PMastonishing-crowd-19276
06/02/2022, 6:35 PMdamp-finland-55386
06/02/2022, 9:01 PMGood day support team, I have a problem with the integration in react native with clevertap in IOS, carry out the process until this step
damp-finland-55386
06/02/2022, 9:02 PMdamp-finland-55386
06/02/2022, 9:02 PMand it shows me this error
damp-finland-55386
06/02/2022, 9:18 PM