Korinne Adler

Results 197 comments of Korinne Adler

We debugged this today and discovered the root cause turns out to a bug in the GNU `kill`, ie. /QOpenSys/pkgs/bin/kill. https://git.savannah.gnu.org/cgit/coreutils.git/commit/?id=900b5621e685df7ffd001fc64bc9d44b06b13900 This affects using GNU kill with pretty much any...

I'm curious: is K & R compatibility a requirement for zlib?

> For key infrastructure, backwards compatibility is pretty important, and it's customary to give a year or so's warning before dropping it, so developers can prepare or object. Very much...

[paho-mqtt](https://pypi.org/project/paho-mqtt/) should be installable without issue using pip. You still need a broker, but ActiveMQ supports that: https://activemq.apache.org/mqtt.html I know other customers have also used IBM i data queues as...

Realizing that these examples really could use some sprucing up to show best practices. The dashboard example should be converted to use Flask and the bottle example should probably be...

My guess is this is similar to #239. Node.js provides a version of OpenSSL itself, which may conflict with other versions of OpenSSL that drivers link to. Node.js 18+ use...

@mikemicmike Since others can't recreate, can you please provide a driver trace? eg. ``` cwbtrc /dt:1 # run node recreate cwbtrc /dt:0 # attach ~/.iSeriesAccess/cwbdetail64-node-XXXXX.csv ```

Thanks, but I asked for a driver trace not an ODBC trace. Looks like it exited out of SQLFetch, however: ``` [ODBC][799263][1704225649.363390][SQLFetch.c][162] Entry: Statement = 1807ce830 [ODBC][799263][1704225649.368336][SQLFetch.c][352] Exit:[SQL_SUCCESS] ``` So...

ECONNREFUSED is not the correct errno to compare with, since that's used in the case that IPv6 _is_ enabled. The real comparison is with EAFNOSUPPORT and EADDRNOTAVAIL. If we wanted...

TBH I don't even know why we need to call SQLProcedures/SQLProcedureColumns. The user provides the schema, procedure name, and parameters. It should be simple enough to generate a `{call (?,?,?,?)}`...