Christian Bruckmayer

Results 16 issues of Christian Bruckmayer

This is a first approach to implement https://github.com/brianmario/fast_xs/issues/6 Please note that there is one test failing. Also please note that I haven't benchmarked the implementation yet. I'm open to suggestions...

In Rails 5 there is already an :async adapter for ActiveJob which we could use for all the backend processing instead of wrapping it into a Thread .... http://api.rubyonrails.org/classes/ActiveJob/QueueAdapters/AsyncAdapter.html

Code

Loading the user page lasts very long. I guess it selects all users from the db, on events.opensuse there are about 1600! We should load users page by page

bug

I just learned about this really cool feature that you can match agains a RegEx in `hash_including` so I added some documentation for it. ```ruby stub_request(:post, "www.example.com"). with(body: hash_including(id: /\d/))...

As part of our bootstrap process we [decrypt ejson files](https://github.com/Shopify/ejson). It would be great if we could dynamically update the redacted vars after we decrypted the ejson files with the...

It would be a nice feature to send emails directly from OSEM - Conference invitations - Reminder mail for visitors 2 days before the conference - Welcome package at the...

feature

## Goal When specifying an `rescue_responses` in Rails, I would expect Bugsnag to not report this error. ``` config.action_dispatch.rescue_responses["FrozenRecord::RecordNotFound"] = :not_found ``` This is happening at the moment because the...

Adding ActiveSupport Notifications similar to what [ActiveRecord already does](https://edgeguides.rubyonrails.org/active_support_instrumentation.html#active-record).

The request id is a unique UUID and therefore we store it in a field. Unfortunately fields can not be grouped in InfluxDB. For ActiveRecord SQL, the data schema looks...

enhancement

In our specs we use a test client to test if metrics were successfully written. https://github.com/influxdata/influxdb-rails/blob/1c9d6997c4add19f9189f1c62b2adff22644635e/spec/support/test_client.rb#L8-L10 The test client is basically just an array with hashes. To simplify our specs...

refactoring
help wanted