Antonio Musolino
Antonio Musolino
Signed-off-by: Antonio Musolino ## Hey, I just made a Pull Request! Hello, I added the possibility to specify a port range in the `backend.reading.allow` in the form: `.example.com:100-1000`; I need...
Signed-off-by: Antonio Musolino ## Hey, I just made a Pull Request! The `searchStream` now awaits the callbacks, and in this way, I can use an async transformer. #### :heavy_check_mark: Checklist...
I think can be useful (in a sentinel environment where `role: 'slave'`) to have an option to failover on master when there aren't slaves alive.
Hi, In windows os all promise remain in "pending" [code](https://github.com/antoniomuso/web-monitoring/blob/master/bin/lib/worker_launcher_test.js), while in linux it works.
It can be cool to integrate the [AbortController](https://nodejs.org/api/globals.html#globals_class_abortcontroller) in the TCP environment. See [options](https://nodejs.org/api/net.html#net_net_createconnection_options_connectlistener). We can try a POC in a PR. Use example: ```javascript const controller = new AbortController();...
Eslint and prettier change continuously the code, in particular they change this line of code: ```ts const cachable = (ttl, hostname) => buildLookupFunction(ttl, hostname, (mock as unknown) as typeof lookup);...
The current types do the overloading of Fastify default types, this creates the problem that we found the plugin types also in data type not reached from the plugin. ```ts...
Evaluate the possibility of throwing in dynamic mode when `getLabel` function is not passed
What do you think of `trackAsyncCbTime` function to trace async function resolve's time? ```typescript async function asyncFunction(a, b, c) { await doSomething(a, b, c); return doSomething2(a, b, c); } const...