Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix http4s websocket support (1.x) #1417

Merged
merged 4 commits into from
Jul 27, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
i am tired
ghostdogpr committed Jul 27, 2022
commit f5223c63aca1dfc4600b4132f48d2a2f9ccb408b
2 changes: 1 addition & 1 deletion adapters/play/src/main/scala/caliban/PlayAdapter.scala
Original file line number Diff line number Diff line change
@@ -153,7 +153,7 @@ object PlayAdapter extends PlayAdapter(None) {
runtime
.unsafeRunToFuture(endpoint.logic(zioMonadError)(())(req))
.future
.map(_.map { (protocol, zioPipe) =>
.map(_.map { case (protocol, zioPipe) =>
val io =
for {
inputQueue <- ZQueue.unbounded[GraphQLWSInput]