rssh / scala-gopher

Implementation of CSP constructions (Communication Sequence Process, i.e. go-like channels) in scala
Apache License 2.0
199 stars 7 forks source link

test failure in Scala 2.11 community build #11

Closed SethTisue closed 7 years ago

SethTisue commented 7 years ago

recently seen at e.g. https://scala-ci.typesafe.com/job/scala-2.11.x-integrate-community-build/345/consoleFull:

[scala-gopher] [error] Failed tests:
[scala-gopher] [error]  gopher.channels.SchedulerStartupTest

maybe the test should have a longer timeout or something?

rssh commented 7 years ago

Let's check: I increased timeout to 3 sec instead one: https://github.com/rssh/scala-gopher/commit/259e90ac16e0df7df75d4510478487d980daab0c

The test itself check the basic functionality of akka scheduler, so only two reasons of failure are possible: timeout and problem in akka scheduling initialization.

rssh commented 7 years ago

Looks like issue is fixed in 347: https://scala-ci.typesafe.com/job/scala-2.11.x-integrate-community-build/347/console

SethTisue commented 7 years ago

thanks Ruslan!