You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
In 89293efrequire 'rest_client' was moved out of many classes and into cli.rb.
Unfortunately, if you try to use Heroku::Client without the Heroku::CLI (which is what kjohnston/pgbackups-archive does) you get an error that RestClient hasn't been required:
NameError: uninitialized constant Heroku::Client::Pgbackups::RestClient
from /app/vendor/bundle/ruby/2.1.0/gems/heroku-3.10.3/lib/heroku/client/pgbackups.rb:14:in `authenticated_resource'
It seems like Heroku::Client should also require 'rest_client'. I'm happy to whip up a PR for that, but wanted to see if there's a better solution first.
Cheers!
The text was updated successfully, but these errors were encountered:
In 89293ef
require 'rest_client'
was moved out of many classes and into cli.rb.Unfortunately, if you try to use
Heroku::Client
without theHeroku::CLI
(which is what kjohnston/pgbackups-archive does) you get an error thatRestClient
hasn't been required:It seems like
Heroku::Client
should alsorequire 'rest_client'
. I'm happy to whip up a PR for that, but wanted to see if there's a better solution first.Cheers!
The text was updated successfully, but these errors were encountered: