Jacob Frautschi

Results 25 comments of Jacob Frautschi

i was having an issue with `unicorn` which also uses forking. a much simpler solution in that case is to use its `after_fork` hook to re-establish octopus connections: ```ruby #...

@marlinpierce do you want to create a PR? perhaps it would be considered then.

see https://github.com/reactjs/react-rails/issues/985#issuecomment-850781640 for a `react-rails`-specific solution.

i found what I think is the least-bad solution. the `react-rails` [ExecJSRenderer](https://github.com/reactjs/react-rails/blob/master/lib/react/server_rendering/exec_js_renderer.rb) and [BundleRenderer](https://github.com/reactjs/react-rails/blob/master/lib/react/server_rendering/bundle_renderer.rb) stub a lot of stuff like `console`, `global`, and `timeout`, but with `extract_css: false` + `inline:...

i'm having this issue now for ubuntu on M1 (via docker). the correct system type is `aarch64-unknown-linux-gnu` and with newer `config.guess` and `config.sub` (e.g. `/usr/share/automake-1.16/config.guess`) the extension build works, but...

ended up switching to [dalli](https://github.com/petergoldstein/dalli)

@zealot128 if you wouldn't mind rebasing master and getting a green build, we can finally merge this 😅

looks like there is one legitimate exception: ``` expect { adapter.on_duplicate_key_update(double(), double()) }.to raise_error('on_duplicate: :override is not currently supported in the PostgreSQL adapter') ``` makes sense. can you fix the...

i've found it much quicker to download the most recently(/similar) built image and use `--cache-from`. i'm not sure if there are other cases where this layer caching solution is cheaper.

this monkey patch works for me with Rails 5: ```ruby class OmniAuth::Strategies::OAuth2 module WithJson def callback_phase # Doing the same thing as Rails controllers do, giving uniform access to GET,...