Skip to content

Commit

Permalink
Update fs2-io to 3.9.1
Browse files Browse the repository at this point in the history
Fix use of deprecated methods.
  • Loading branch information
github-actions[bot] authored and arosien committed Sep 27, 2023
1 parent 99a9147 commit 2f70023
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ lazy val debugger = project
"ch.qos.logback" % "logback-classic" % "1.2.11",
"com.microsoft.java" % "com.microsoft.java.debug.core" % "0.34.0",
// scala-steward:on
"co.fs2" %% "fs2-io" % "3.2.14",
"co.fs2" %% "fs2-io" % "3.9.1",
"com.monovore" %% "decline-effect" % "2.3.1",
"org.typelevel" %% "log4cats-slf4j" % "2.5.0",
"org.scalameta" %% "munit" % "0.7.29" % Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ object DAPSession {

def resource(socket: Socket): Resource[IO, DAPSession[Request, Response, DebugEvent]] =
for {
dispatcher <- Dispatcher[IO]
dispatcher <- Dispatcher.parallel[IO]
requests <- Resource.eval(Queue.bounded[IO, Option[Request]](10))
server <- Server.resource(socket.getInputStream, socket.getOutputStream, dispatcher, requests)
session = DAPSession(server, Stream.fromQueueNoneTerminated(requests))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1329,7 +1329,7 @@ object Parse {
infosetFormat: String
): Resource[IO, DaffodilDebugger] =
for {
dispatcher <- Dispatcher[IO]
dispatcher <- Dispatcher.parallel[IO]
} yield new DaffodilDebugger(
dispatcher,
state,
Expand Down

0 comments on commit 2f70023

Please sign in to comment.