arun.jayapal
arun.jayapal
### Is there an existing issue for this? - [X] I have searched the existing issues ### OS/Web Information - Web Browser: msedge - Local OS: windows 11 - Remote...
Are there any issues with this pattern of code: ```js let pool = new Pool({ max: 5 }); pool.on('connect', (client) => { client._ready = new Promise((resolve, reject) => { client.query('SET...
For e.g. a hypthetical long-running request advanced to the db server and is being executed or fetched by the db engine. What happens to that specific db request if the...
And the other way around...like if I took this package and changed the `redis` dependency to `ioredis` and then connected to a redis-sentinel instance? Can I execute the traditional redis...
Some security scan on our app points to that (js) api and reports that it is a weak random number generator. It also reports that there are better alternatives like...
Can we add custom seralizers through the `LOGGER_CONFIG` environment variable?
This wrapper is not showing the current date...
Is there a faster way to play (without pauses)? ```py from pydub import AudioSegment from argparse import ArgumentParser from pydub.playback import play if __name__ == '__main__': parser = ArgumentParser('test.py') parser.add_argument('file')...
I am trying to determine if the following function is called multiple times, or, only once, in an eventloop tick. https://github.com/amqp-node/amqplib/blob/64d1c1ec19afa64a7ec5c355ea7620f0b227fb30/lib/channel.js#L289 I assume this is the function which processes messages...
https://github.com/brianc/node-postgres/blob/master/packages/pg-connection-string/index.js 👆 The code here is not setting anything with respect to `idleTimeoutMillis`. Other parameters such as `user`, `password`, `ssl`, etc are set. Therefore when using connection string usage -...