Hammerbot
Hammerbot
I think that the problem lies on the express adapter itself, on the close method. ```ts public close() { this.closeOpenConnections(); if (!this.httpServer) { return undefined; } return new Promise(resolve =>...
Honestly I'm not sure, I just tried on a new project and it closes open connections with the default. Here is the current implementation of the `closeOpenConnections` method: ```ts private...
I'm so sorry, it works exactly as expected when trying again on a fresh project. I was trying something with a special configuration. Have a nice day! This is not...
Honestly, everything works fine on my side when testing manually. I tried your reproduction repo but I think that it's more a test configuration that is failing :/
After investigating a little bit on your test repo, it seems to me that the problem comes from supertest itself. I'll try to make a reproduction later this week
Same problematic here. And I can't find how to access secrets on my docker container to eventually replicate the information across machines... Any help is highly appreciated if you managed...
Hey! Did you find a solution for your problem? I'm having the same issue here.
After a day of trying to understand C++, compiling V8 and messing with everything, I came to the conclusion that it's a V8 limitation, not a limitation from isolated-vm. ```c...
Hey! I actually checked Promise state and it is `kFulfilled`. I think it's because I'm not actually using any async code in the module source: ```c if (promise->State() == v8::Promise::kFulfilled)...
Hey @amihaiemil thank you for your feedback! You are the first person to take the time to send me a message about this library! I would say that I'm not...