James Gragg

Results 50 comments of James Gragg

@lahirumaramba Thanks for taking a look! Did you see the code I referenced in the OP? https://github.com/firebase/firebase-admin-node/blob/94dd7c3efb9ff00b0462cf772b803d6abecc2dcc/src/auth/user-record.ts#L305

Hi @lahirumaramba, everything works just fine, but VSCode shows it as non-nullable when accessing that field and points to that code:

Dug into the Crashlytics, and it's iOS only and only during migrations. Traces are always the same. The database is opened once, on one isolate. Yes, the intention is to...

@simolus3 `handleDriftException` was just `Sentry.captureException(e, stackTrace: stackTrace);` and this is what Sentry collected. This is what we've expanded it to (no error reports collected with it yet): ``` void handleDriftException(Object...

With extra error handling added (from Android 11 w/isolate): ``` String: SqliteException(1): cannot rollback - no transaction is active Causing statement: ROLLBACK TRANSACTION File "database.dart", line 129, in DatabaseImpl.execute File...

> Thanks for the additional info! You said no isolates, but there's a `ServerImplementation` in the stack trace. I assume you're using web workers then? Also how can there be...

Thanks for taking the time and addressing this (and everything else) so thoughtfully. It really shows and we appreciate it. To answer your question, nope, no rollbacks used anywhere. It’s...

There are situations where batches might run simultaneously. Possibly a result of that?

> can you elaborate on the extra parameters that are getting appended to the Body? these are serialized into a [request envelope](https://github.com/alexa/alexa-apis-for-nodejs/blob/master/ask-sdk-model/index.ts#L609) as long as you have the matching ask-sdk-model...

Perhaps one of these changes in Express 5 is breaking the validator? https://expressjs.com/en/guide/migrating-5.html Maybe the req.host change or another undocumented update?