Philipp Sumi

Results 20 comments of Philipp Sumi

Weird, my good ole' launchy worked with FF without complaints. Also now ran into this when trying our PT on a new Win 11 install.

@vkarpov15 you suggested this as an alternative: ```javascript for (let i = 0; i < 2; ++i) { const session = await mongoose.startSession(); session.startTransaction(); const doc = await Test.findById(_id); doc.name...

@vkarpov15 The transaction helper is not always feasible for us, since it clashes with our own patterns. We introduced a wrapper around a session that we can pass around, and...

Ah, I see where you are coming from! A hook would be already good enough - we'd just add that to our wrapper and be done with it :) Food...

> the MongoDB Node driver to handle the case when someone calls findOne({}, { session }) I guess if it's a decorator, that would "just work", because the wrapper session...

FYI @vkarpov15, in our workaround, we noticed that we also had to do a little hackery around the version number in order to get this work properly. Just wanted to...

Hi Vitali **TL;DR;** After realizing it was on us, heading over to Open Collective and making a donation for your lost time was the least I could do. Thanks for...

It's only one entity type that has virtuals, but those are a few: - a reference to a hydrated parent entity - a reference to a field of that parent...

@Stmol Are you seeing this on Android too? I have the reverse issue on Android: When using this control in a carousel, the carousel doesn't scroll anymore because the zoom...

Update: Enrichers get me closer to the desired result - it appears only the camel casing is missing in your formatter. The property name itself is nicely converted to camel...