Jacob Frautschi

Results 7 issues of Jacob Frautschi

given a feed like the one below (real-world - but private - example), `Feedjira::Parser::Atom.parse(xml).entries.first.title` returns "Korben" (the `source.title`) instead of "Créer un timelapse d’images satellites". `raw_title` returns "Créer un timelapse...

stack trace from Sidekiq: ``` SidekiqStatus::Container::StatusNotFound: 0bb902282a1ad80d35fb5919 sidekiq_status-1.2.0/lib/sidekiq_status/container.rb:149:in `load_data' sidekiq_status-1.2.0/lib/sidekiq_status/container.rb:128:in `load' sidekiq_status-1.2.0/lib/sidekiq_status/worker.rb:18:in `perform' ``` Is it related to this change? Do not create (and display in sidekiq_status/web) status containers for...

after updating was getting lots of "Do not reuse nodes. Use `t.cloneNode` (or `t.clone`/`t.cloneDeep` if using babel@6) to copy them." errors in the tests, so the extra calls to `cloneNode`...

https://github.com/socketry/falcon/blob/4002aea74988a9b6f5560363eb7738084308152d/lib/falcon/command/virtual.rb#L63 `debug` is way too noisy in production. (is there a good way to override the Console.logger log level in a rails app?)

We had lots of web requests circumventing our installation of `rack-utf8_sanitizer`, and it turned out they were for additional resources (`css`, `js`, etc) and had _no_ content type. Luckily, the...

…for `async-http` adapter to remove implicit dependency on `async-io` `async-io` was removed as a dependency from `async-http` in version 0.65.0: https://github.com/socketry/async-http/releases/tag/v0.65.0 fixes: https://github.com/bblimke/webmock/issues/1055

as of https://github.com/socketry/async-http/releases/tag/v0.65.0 `async-http` does not use `async-io` anymore. but the `async-http` webmock adapter has an implicit dependency on `async-io` here: https://github.com/bblimke/webmock/blob/fc6a2ab897a069d861adbc1c88e51b2cf8aa88ac/lib/webmock/http_lib_adapters/async_http_client_adapter.rb#L156-L160