2012-02-28 18 views

回答

0

如果沒有使用任何進程,您將不會收費但是我懷疑如果您還有其他付費插件,您仍然需要爲它們收費。

+0

'沒有正在使用的進程'表示您已將它們縮小到零 – 2012-02-28 15:22:18

0

是的,您將收取任何正在運行的正常運行的進程的費用。維護模式只是向路由器發送一條消息,要求它不要將請求路由到您的應用程序。

$ heroku ps                              
Process State   Command        
------- ------------ ------------------------------------ 
web.1 running for 25h bundle exec unicorn -p $PORT -c ./.. 

$ heroku maintenance:on     
Maintenance mode enabled. 

$ heroku ps                              
Process State   Command        
------- ------------ ------------------------------------ 
web.1 running for 25h bundle exec unicorn -p $PORT -c ./.. 
相關問題