-
Notifications
You must be signed in to change notification settings - Fork 9
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
Updates for fs2 v3 #132
Updates for fs2 v3 #132
Conversation
@@ -72,19 +70,17 @@ final private class UnsecureFtp[F[_]: ConcurrentEffect: ContextShift]( | |||
) | |||
|
|||
def execute[T](f: JFTPClient => T): F[T] = | |||
blocker.delay[F, T](f(unsafeClient)) | |||
Sync[F].delay(f(unsafeClient)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sync[F].delay is not equivalent to blocker.delay
please use Sync[F].blocking()
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
great thank you :)
@regis-leray , Fixed the Sync[F].blocking. Their is one readFile test failing which I am not sure why. Any insight on that would be much helpful. Thanks! |
@rehanone thank you maybe a bug in fs2 ? try to open a bug
|
@rehanone please try new release https://github.com/typelevel/fs2/releases/tag/v3.0.3 |
- Updated `scala-2.13 ` from 2.13.1 to 2.13.5 *Dependencies Updates* - Updated `fs2` dependency from 2.5.0 to 3.0.3 - Updated `scala-collection-compat` dependency from 2.3.2 to 2.4.3 - Updated `commons-net` dependency from 3.7.2 to 3.8.0 *Plugin Updates* - Updated `sbt-scoverage` plugin from 1.6.1 to 1.7.0 - Updated `sbt-sonatype` plugin from 3.9.5 to 3.9.7
@regis-leray , I have updated the PR, please review. Thanks. |
scala-2.13
from 2.13.1 to 2.13.5Dependencies Updates
fs2
dependency from 2.5.0 to 3.0.2scala-collection-compat
dependency from 2.3.2 to 2.4.3commons-net
dependency from 3.7.2 to 3.8.0Plugin Updates
sbt-scoverage
plugin from 1.6.1 to 1.7.0sbt-sonatype
plugin from 3.9.5 to 3.9.7