You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I really like the idea of finch, and I'm trying to test it out, but sadly I keep hitting obstacles.
First there was an issue with the versions, ( #1194) but I finally solved that. But now I can't get the example hello world to work either.
Aug 12, 2020 1:16:58 PM com.twitter.finagle.Init$ $anonfun$once$1
INFO: Finagle version 20.3.0 (rev=e3fd6d1bd88c9ed7edeb98a6598e23800924c633) built at 20200308-110626
Process finished with exit code 0
I'm not sure if the problem is on my side or with the example.
The text was updated successfully, but these errors were encountered:
Hi @KovaxG I believe this is an issue with the docs. I think #1250 fixes it. I will try to take a look and merge it this weekend.
Basically, Http.server.serve is returning a future that represents the life time of the server. Because it is a future it returns immediately and then the program exits. You can wrap it in Await.ready to block it until the server shuts down like so:
Hi, I really like the idea of finch, and I'm trying to test it out, but sadly I keep hitting obstacles.
First there was an issue with the versions, ( #1194) but I finally solved that. But now I can't get the example hello world to work either.
I'm trying
but all I get is
I'm not sure if the problem is on my side or with the example.
The text was updated successfully, but these errors were encountered: