Skip to content
This repository was archived by the owner on Nov 30, 2021. It is now read-only.

Release v0.0.7

Choose a tag to compare

@dthorpe dthorpe released this 08 Jan 21:00
5b750e9

Adds module preloads to avoid Ruby/JRuby execution failures in multithreaded apps.

Some of our dependencies (Faraday) still use autoload to load modules. Autoload is not thread safe, and can lead to mysterious "Undefined constant" or other errors at runtime in multithreaded apps.

Preloading those autoloaded modules before getting into multithreaded execution resolves the threading issue.