在Heroku上使用cedar-14堆栈。刚刚注意到我无法再运行heroku run console
,因为我收到错误:
bash:console:找不到命令
我仍然可以通过以下方式访问控制台:
heroku run bundle exec rails console
但我想知道可能导致这种变化的原因。经过几天的提交后我才注意到这个问题,所以我可以找出问题所在。
答案 0 :(得分:4)
答案 1 :(得分:0)
尝试
var a = document.getElementById("whatever");
a
我碰巧看到了预览应用程序的此问题。对于常规应用,Assuming this is what I want to do
th = -1 # threshold
a = [-3,4,5,-1,-2,-5,1,4,6,9,-3,-3,-1,-2,4,1,4] # my data
a[x]<th and a[x+1]<th and a[x+2]<th # find 3 or more consecutive
time below threshold
in this case that will be event e1=[-1,-2,-5] and e2=[-3,-3,-1,-2]
next I want to count this
counts = [len(e1),len(e2)] = [3,4]
Sum = [np.sum(e1),np.sum(e2)] = [-8, -9]
可以使用。
答案 2 :(得分:0)
我遇到了同样的问题,但是我通过删除heroku/metrics
构建包解决了这个问题。
我已经遵循为Ruby Language Metrics
https://devcenter.heroku.com/articles/language-runtime-metrics-ruby进行的配置,然后尝试运行命令heroku run console
,该命令正在触发command not found error
,然后我恢复了更改并开始工作。 / p>
希望这会有所帮助!