Skip to content
#

cats

Here are 627 public repositories matching this topic...

zio
adamgfraser
adamgfraser commented Feb 28, 2020

There is a lot of great information in fiber dumps about what fibers currently exist, who their parents are, and what they are doing to help diagnose deadlocks or other concurrency issues. However, right now the visualize presentation is not as good as it could be in clearly showing which fibers are parents of another fiber versus siblings. This ticket is to improve the Fiber.prettyPrintM to pri

Monocle
julien-truffaut
julien-truffaut commented Dec 16, 2016
java.lang.IllegalArgumentException: Argument not supported by ScalaTest-js: -C
	at org.scalatest.tools.ArgsParser$.parseArgs(ArgsParser.scala:191)
	at org.scalatest.tools.Runner$.runOptionallyWithPassFailReporter(Runner.scala:883)
	at org.scalatest.tools.Runner$.run(Runner.scala:850)
	at org.scalatest.tools.Runner.run(Runner.scala)
	at org.jetbrains.plugins.scala.testingSupport.scalaTest
adamw
adamw commented Feb 17, 2020

Currently websockets are unsupported:

class SttpBackendStub[F[_], S] private (
    monad: MonadError[F],
    matchers: PartialFunction[Request[_, _], F[Response[_]]],
    fallback: Option[SttpBackend[F, S, NothingT]]
) extends SttpBackend[F, S, NothingT] { // TODO

(note the TODO for the NothingT type parameter which specifies what kind of websockets are supported).

The bac

slivkamiro
slivkamiro commented Dec 17, 2019

Hi, I've just hit an error when trying to define dictionary with array value type. Seem to be not supported by guardrail yet.
Would it be possible to add this feature?
Thanks.

Definition example:

type: object
additionalProperties:
  type: array
  items: 
    type: string
ceedubs
ceedubs commented Feb 17, 2019

I noticed that even thought there is a cats-mtl Gitter channel, the Travis build notifications are going to the Cats Gitter channel instead. I don't have write permissions to this repo, so I can't see the right URL to fix it, but someone with permissions should be able to go to the cats-mtl Gitter channel, click the settings knobs on the upper right, click Integrations and set up a new webhook U

DevonPeroutky
DevonPeroutky commented Nov 27, 2018

The docs make it pretty clear how to make a request and decode the entity of the HttpResponse:

  val response = Hammock
    .request(Method.GET, uri"https://api.fidesmo.com/apps", Map())
    .as[List[String]]
    .exec[IO]

And you can get the headers like:

  val response = Hammock
    .request(Method.GET, uri"https://api.fidesmo.com/apps", Map())
    .map(_.headers)
    .

Improve this page

Add a description, image, and links to the cats topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the cats topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.