Skip to content

Commit

Permalink
turning the assertion into a warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bgaidioz committed Feb 5, 2024
1 parent 73dc88c commit 7a3d882
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion utils/src/test/scala/raw/utils/RawTestSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ trait RawTestSuite extends FixtureAnyFunSuite with BeforeAndAfterAll with Strict
logger.debug(s"Waiting for services to terminate gracefully. Attempts left: $attempts")
Thread.sleep(1000)
}
assert(RawService.isStopped(), s"Not all services stopped properly. Still running: ${RawService.services}")
if (!RawService.isStopped())
logger.warn(s"Not all services stopped properly. Still running: ${RawService.services}")
}
}

0 comments on commit 7a3d882

Please sign in to comment.