Oleg Pudeyev
Oleg Pudeyev
When I specify ME_CONFIG_MONGODB_URL in docker run, I expect mongo-express to use the specified URI, but it does not: ``` serene% docker run -it --rm -p 8081:8081 --env ME_CONFIG_MONGODB_URL=mongodb://serene:14400 mongo-express...
This is exactly what #127 requested, and even though that issue is closed as far as I can tell the requested functionality, specifically generating certificates, is not in mtools master...
I tried passing `--setParameter transactionLifetimeLimitSeconds=15` to my sharded cluster via mlaunch. mlaunch failed thusly: + mlaunch --replicaset --nodes 2 --sharded 2 --name ruby-driver-rs --mongos 2 --dir /mnt/zram/mongodb/4.1-scm --setParameter ttlMonitorEnabled=false --wiredTigerEngineConfigString...
When mlaunch start is used to start a deployment which is already completely running, it exits with exit code 1: butler% mlaunch start --dir /mnt/zram/sandbox/rs-restart no nodes started. butler% echo...
If I create a skeleton Rails API application, and then remove ActiveRecord from the application, spring still tries to load AR which ultimately fails and prevents generators etc. from working....
We implemented client certificate chain support in MongoDB Ruby driver by using the following code: https://github.com/mongodb/mongo-ruby-driver/pull/1366/files#diff-ed625ecdabf4aeff5d1a5fc04b958a3a Briefly speaking, this specifies the leaf certificate as SSLContext#cert and adds all intermediate certificates...
https://ruby-doc.org/stdlib-2.5.0/libdoc/openssl/rdoc/OpenSSL/SSL/SSLContext.html specifies for renegotiation_cb: > A callback invoked whenever a new handshake is initiated. May be used to disable renegotiation entirely. This docstring appears to be either misleading or incorrect,...
This constant is used to disable renegotiation. MRI: ``` serene% irb -ropenssl irb(main):001:0> OpenSSL::SSL::OP_NO_RENEGOTIATION => 1073741824 ``` JRuby: ``` irb(main):001:0> OpenSSL::SSL::OP_NO_RENEGOTIATION Traceback (most recent call last): 7: from /home/w/.rbenv/versions/jruby-9.2.11/bin/irb:13:in `'...
I am working on OCSP stapling support in MongoDB Ruby driver. Per https://github.com/ruby/openssl/issues/295 this functionality is currently not provided by MRI's openssl extension. I have an [open PR](https://github.com/ruby/openssl/pull/401) for MRI...