James Chevalier
James Chevalier
Ah, yeah, I can see how raising on rate limit vs returning rate limit info are two separate pieces of work. 👍 My use case on having access to these...
What is the recommended shutdown / server reboot procedure? Something like this? - Run a `kill $PID` for each process - Shut down the server - Start the server -...
Sorry about truncating that. **Relevant line in config/deploy/deploy.rb** ``` set :application, 'application_name' ``` **The resulting cronjob after a staging deploy** ``` # Begin Whenever generated tasks for: application_name 0,10,20,30,40,50 *...
OK, I was at: - capistrano: 3.3.5 - whenever: 0.9.4 - ruby: 2.1.5 - rails: 3.2.21 I've upgraded capistrano to 3.4.0, but the issue persists. It seems like that should...
> Do you mean this happens in development? Yes. I believe my reproduction repository is also set up to demonstrate that.
This is looking more & more like an issue with mysql. I've since run into further issues with emoji characters and the mysql utf8 character set. I learned that emoji...
I'm running into https://bugs.ruby-lang.org/issues/20997 in my site, and I'd like to see if this test suite also runs into the issue Related: https://git.ruby-lang.org/ruby.git/commit/?id=37356b713ceb0d159f946269c8479854ceb2acee
I'm getting a _slightly_ different `can't cast RGeo::Geographic::SphericalLineStringImpl` error in my test suite when running it against Rails 7.2.1. I looked into it a little bit, and was able to...
Some additional details that 🤷 may or may not be helpful... My initializer: ```ruby RGEO_FACTORY = RGeo::Geographic.spherical_factory(srid: 4326, uses_lenient_assertions: true) RGeo::ActiveRecord::SpatialFactoryStore.instance.tap do |config| config.default = RGEO_FACTORY end ``` I tested...
Thanks for the suggestion, @BuonOmo ```rb # frozen_string_literal: true require "bundler/inline" gemfile(true) do source "https://rubygems.org" git_source(:github) { |repo| "https://github.com/#{repo}.git" } gem "rails", "~> 7.2" gem "pg" gem "activerecord-postgis-adapter", github: "rgeo/activerecord-postgis-adapter",...