Michal Lacko

Results 3 issues of Michal Lacko

Hi i am running a service which makes lots of calls to some other service, lets say 10 calls per second. The service runs properly but eventually there are periods...

An endpoint like this ``` case _ @Method.GET -> _ / "failing" => ZIO.succeed( Response( headers = Headers(Header.Custom(":status", "200")) ) ) ``` should not fail when called or am i...

bug
💎 Bounty

code to reproduce ``` import com.marekkadek.scraper.Document import com.marekkadek.scraper.jsoup.JsoupBrowser import com.marekkadek.scrawler.crawlers.{Visit, YieldData, Yield, Crawler} import fs2.{Strategy, Stream, Task} import scala.concurrent.duration._ class BadCrawler extends Crawler[Task, Int](Seq(JsoupBrowser[Task]( connectionTimeout = 20 seconds ))) {...

bug