heroku db:pull does not work?

前端 未结 3 1996
清歌不尽
清歌不尽 2021-01-04 14:36

I get the following error message:

heroku db:pull --debug postgres://USERNAME:PASSWORD@localhost/test 
Loaded Taps v0.3.23
Warning: Data in the database \'po         


        
3条回答
  •  [愿得一人]
    2021-01-04 14:55

    I answered to similar problem here: Unable to fetch tables information when running heroku db:pull

    I found some kind of work-around.
    I have the same problem with my SHARED_DATABASE on heroku
    ruby 1.9.2
    gems:
    pg (0.11.0)
    heroku (2.32.4)
    heroku-api (0.3.5)
    taps (0.3.24)
    heroku db:pull ended with:
    Unable to fetch tables information from http://...@taps19.heroku.com. Please check the server log.

    I switched to ruby 1.8.7 using rvm and heroku db:pull works fine.
    Back again to ruby 1.9.2 to develop my application.

    I hope this help someone until db:pull will be fixed with ruby 1.9.2.

提交回复
热议问题