Bobby McDonald
Bobby McDonald
I'm seeing the latter error w/ ruby 2.6 and the latest released version of brakeman ```ruby #!/usr/bin/env ruby # This binstub ensures that you are running the latest version of...
```ruby if relation.respond_to?(:find_in_batches) relation.find_in_batches(batch_size: batch_size) do |items| batch_job(class_name, batch_id, items.map(&:id)) ``` I believe, and correct me if I'm wrong, but `find_in_batches` here will convert batch to an array of AR...
Could you use [Semaphore](https://github.com/discordapp/semaphore) to track requests and fail fast when the rate limit has been hit?
I'm not sure this is an omniauth issue, I'd think it would be a sinatra one?
Do you have `Omniauth.config.test_mode` set?
The issue is that @env is nil, and actually lives in the Omniauth gem and not this one: https://github.com/omniauth/omniauth/blob/master/lib/omniauth/strategy.rb#L500-L502 We could `return ''` if @env is nil there, if you...
> Also wondered about the same thing, and the search led me here. Is there any willingness to support this from the maintainers? are PRs for this going to be...
> I am using this strategy https://github.com/stevenkaras/omniauth-mailchimp and it does not work like that. > > Basically, anything I add to the session in the request phase is lost when...
Hi @utkarsh2102, what version of omniauth are you testing against? I believe we had resolved this.
Hi @bradgessler, there's a lot of history w/ using GET, and a long standing vulnerability that was fixed last year around it. https://github.com/advisories/GHSA-ww4x-rwq6-qpgf I don't particularly wish to recommend folks...