Skip to content

Commit

Permalink
finally managed to fix lorre not quitting after experiencing timeout (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrkosecki authored Jan 29, 2021
1 parent dc99151 commit 9e0c651
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -403,8 +403,9 @@ object TezosIndexer extends ConseilLogSupport {
val gracefulTermination = () =>
for {
_ <- Future.successful(db.close())
_: ShutdownComplete <- nodeOperator.node.shutdown()
_ = materializer.shutdown()
_: Terminated <- system.terminate()
_: ShutdownComplete <- nodeOperator.node.shutdown()
} yield ShutdownComplete

new TezosIndexer(
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ object Dependencies {
val scopt = "4.0.0-RC2"

val akka = "2.6.11"
val akkaHttp = "10.2.1"
val akkaHttp = "10.2.3"
val akkaHttpJson = "1.35.2"
val akkaHttpCors = "1.1.0"

Expand Down

0 comments on commit 9e0c651

Please sign in to comment.