19:02:39 puffybuf: I had to give up with OpenBSD monerod . it kept crashing and corrupting my entire DB. So I'm emulating Linux on obsd and running it there :) Runs much better too, no slow downs and freezing my system
19:03:34 ofrnxmr:xmr.mx: Even if you changed the db sync mode to something like fast:async?
19:05:13 puffybuf: yea it would still freeze up now and then. I just don't have the skills to debug it. Async would keep my system from freezing, but all operations on that HD would stop for 30 seconds or so until it finished.
19:05:24 puffybuf: I got a new HD and did a read-write badblocks test on it. And ran memtest
19:05:31 puffybuf: I think it's the code (and OS)
20:24:48 falsePreText: Hi, the docs for wallet-rpc is somewhat vague regarding mixin and ring_size values. I understand that since the latest hard fork the ring_size is fixed in the "network" and thus setting these should not be applicable? Looking at the feather wallet source code they go with a 11 for mixin as a constant.
20:41:39 ofrnxmr:xmr.mx: Its ignored for new txs
20:42:07 ofrnxmr:xmr.mx: i think it might apply when spending old (v1?) Outputs
20:55:42 falsePreText: thanks
21:47:48 jeffro256:monero.social: Can we add #10111 to the merge queue soon, please? A lot of crypto depends on that commit and it seems to have received decent review given its relatively small size
22:03:06 datahoarder:monero.social: monerod with --rpc-login test:test2
22:03:06 datahoarder:monero.social: doesn't work:
22:03:08 datahoarder:monero.social: ```
22:03:10 datahoarder:monero.social: curl --verbose -H "Connection: close" --digest -u test:test2 --digest http://127.0.0.1:18081/get_info
22:03:12 datahoarder:monero.social: ```
22:03:14 datahoarder:monero.social: works:
22:03:16 datahoarder:monero.social: ```
22:03:18 datahoarder:monero.social: curl --verbose --digest -u test:test2 --digest http://127.0.0.1:18081/get_info
22:03:20 datahoarder:monero.social: ```
22:03:22 datahoarder:monero.social: RPC expects the connection to be kept open/reused for context. But if connection is not reused, the context is started anew and it can never have successful auth.
22:04:56 ofrnxmr:xmr.mx: Cc [@vtnerd:monero.social](https://matrix.to/#/@vtnerd:monero.social) for rereview
22:04:57 datahoarder:monero.social: This is not RFC 2617 as mentioned in the code. RFC 2617 does not require connection to be kept open or reused
22:08:16 datahoarder:monero.social: Seems https://github.com/monero-project/monero/issues/8871 was hitting the same issue