kp198
kp198
Hey Does this cause a crash for you guys in RCTEventEmitter?
@glesperance I was asking if you meant app crashes when you had mentioned `Bridge Invalidation breaks RNCallKeep RTCEventEmitter on recent RN versions` i.e what exactly does breaks mean? Is it...
Hi I am facing a similar issue somewhere else. Unable to reproduce it though, Any help with your findings regarding this is appreciated. CoreFoundation | __exceptionPreprocess (CoreFoundation) -- | --...
``` server.get('/dummyetag', async (request, reply) => { reply.raw.setHeader('etag','etag') return reply.code(200).send({test: 'Dummy etag'}); }); ``` ``` server.get('/fastifyetag', async (request, reply) => { return reply.code(200).send({test: 'Fastify etag'}); }); ``` So let's say...
so shouldn't the QPS of the /dummyetag path be lesser since etag generation is not happening I notice the same QPS for both paths which is weird
I get the 'etag' here @Uzlopak