运行sbt runAll
会产生以下结果:
[info] Starting Cassandra
.
[info] Cassandra server is not yet started.
[info]
[info] The value assigned to
[info] `lagomCassandraMaxBootWaitingTime`
[info] is either too short, or this may indicate another
[info] process is already running on port 4000
端口4000上没有运行。我尝试配置不同的端口,但消息仍然存在(使用不同的端口)。
默认情况下,20秒就足够了,我强烈怀疑这是问题所在。
不知道如何调试这个或者原因是什么。
我意识到我可以运行一个本地的Cassandra服务器,但我希望能让它工作
有什么建议?
答案 0 :(得分:0)
事实证明,增加超时实际上如文档中所述:
import scala.concurrent.duration._ // Mind that the import is needed.
lagomCassandraMaxBootWaitingTime in ThisBuild := 50000.seconds
我的电脑可能存在问题,构建速度极慢 我会进一步研究这个问题。