Christopher Dignam

Results 6 comments of Christopher Dignam

@joho I made a PR to resolve this issue: https://github.com/joho/godotenv/pull/166 It would be great to get your feedback!

I think ConfiguredRetryStrategy can be used to replicate the old behavior ```ts // v2 api import AWS from 'aws-sdk' const cloudwatch = new AWS.CloudWatch({ apiVersion: '2010-08-01', maxRetries: 5, retryDelayOptions: {...

@reckter Were you ever able to figure out a solution to this issue? I'm having the same issue with a similar mono-repo setup

I just encountered this issue too. Same exception as https://github.com/getsentry/sentry-javascript/issues/5622#issuecomment-1246547569, but I haven't been able to replicate on my local machine

I'm on node `v16.16.0`, which doesn't have `crypto.getRandomValues`. Yet somehow sentry was triggering this code. I'm guessing there is some conflicting node module. ``` crypto && crypto.getRandomValues ? () =>...

I found the issue. We had a bad polyfill included by a dependency. The polyfill was: ```ts globalThis.crypto = { getRandomValues: function getRandomValues(b) { require('crypto').randomFillSync(b) // missing return statement! },...