【发布时间】:2012-08-05 09:40:55
【问题描述】:
我正在与 Play 对抗! v2.1-SNAPSHOT 并且从 play Promise 转移到 scala futures。我相应地更改了我的代码并在本地运行它 - 使用 sbt 和工头。但是,当我尝试上传到 Heroku 时,我得到:
ExecutionContext is not a member of package concurrent
[error] import scala.concurrent.ExecutionContext.Implicits.global
我在本地运行时遇到了上述错误,直到我更改了我的代码。我相信 heroku 上的 2.1-SNAPSHOT 版本控制存在问题。从buildpack 看起来,heroku 从看起来像http://s3pository.heroku.com/* 的 repos 加载 jar。我想这是为了缓存。如果是这样,缓存多久清除一次?有没有人可以解决这个问题?
编辑
看起来,常春藤罐子被缓存,就好像我使用 heroku create 在 heroku 中创建一个新堆栈一样,我可以正常部署...所以我的问题是如何清除常春藤缓存?
【问题讨论】:
标签: heroku playframework