Results 589 comments of MSP-Greg

> note that rspec-expectations (3.13.3) is being installed and rspec-expectations (3.13.2) is being removed, despite 3.13.2 being in the Gemfile.lock I'm working on other things, so I really haven't dove...

There is no way to log Gemfile.lock before setup-ruby starts the Bundler operations. That might be a helpful option for debugging, possibly with before/after flags. Have you logged/dumped Gemfile.lock to...

At present, the only way is to log it after the setup-ruby step. Just a `cat Gemfile.lock` should work. Logging the 'before' would require a change to the setup-ruby code....

@jjb Since you've been in the stats test code recently, wondering what your thoughts are.

> does this refer to the changes in this PR or to future possible changes in app code? No changes to lib files in this PR, only test files. So,...

@jjb > the ordering in the app code is hardcoded in worker.rb + worker_handle.rb, and it's parsed without the json library in order to avoid making it a dependency. probably...

Here is the test log of a recent macos failure. Notice that `TestIntegrationCluster#test_term_closes_listeners_tcp` passed, but `TestIntegrationCluster#test_term_closes_listeners_unix` never completed. Following is a GHA test log: ```text TestIntegrationCluster#test_term_closes_listeners_tcp = 4.33 s =...

Looked thru tests, found another. Added with 2nd commit. Some info on the error from IBM stated 'reestablish the connection' when `Errno::ECONNABORTED` ocurrs. ```text # terminated with exception (report_on_exception is...

@ioquatix Dumb question, I don't want to switch gears to... Off the top of your head, will that work with older versions of Rack? I haven't run our test suite...