Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
74 views

I've written following snipped to mimic my problem: implicit val actorSystem: ActorSystem = ActorSystem() implicit val executionContext: ExecutionContext = actorSystem.dispatcher ...
Heisenberg's user avatar
  • 5,678
0 votes
0 answers
51 views

I have a simple 'classic' actor that just recieves a message and logs string Bingo to INFO. In my test I setup an InfoFilter EventFilter to verify the log.info message call. Debugging I can see that ...
skinnydan72's user avatar
0 votes
1 answer
64 views

In my use case, I need to use the RSocket protocol to create a reactive stream over the network, and on the client side return a pekko Source, and on the server side return a pekko Sink. I have no ...
David Masters's user avatar
0 votes
0 answers
63 views

I have added a directive object CustomDirectives extends Directives { def wrapWithTracing(name: String)(innerRoute: => Route)(implicit req: RequestContext): Route = { //start span // ...
Nirmal's user avatar
  • 37
0 votes
1 answer
190 views

Heeey all, I'm doing a Akka to Pekko migration of a pet project (I'm learning scala atm). So far everything went smooth but there is one thing that I can't get fixed and the grpc plugin. In my build....
Leon Weemen's user avatar
0 votes
1 answer
122 views

Is there any function or a way to work around the RequestContext in PlayFramework, that works similarly to Pekko's extractRequestContext? I'm migrating an old Akka rest API to Play3.0, and I need to ...
DanCrts's user avatar
0 votes
0 answers
531 views

On my kubernetes cluster I have flink-kubernetes-operator 1.7.0 and apache-flink 1.18.1 installed. I came across an issue when I installed FlinkDeployment CR (custom resrouce) into a namespace named ...
Aniruddh Jhavar's user avatar
0 votes
1 answer
211 views

Consider the following code: def getFlow()(implicit appConfig: AppConfig, actorSystem: ActorSystem): Flow[BrandSafetyServiceRequest, HttpResponse, NotUsed] = { implicit val ...
Zvi Mints's user avatar
  • 1,152