Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
debugging-akka-dispatcher
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Burcu Özkan
debugging-akka-dispatcher
Commits
41768110
Commit
41768110
authored
Jul 20, 2017
by
Burcu Özkan
Browse files
Options
Downloads
Patches
Plain Diff
Minor - name of the deadLetters
parent
1f7bf18c
Branches
Branches containing commit
Tags
user-study
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
dispatcher/src/main/scala/akka/dispatch/DebuggingDispatcher.scala
+2
-2
2 additions, 2 deletions
...er/src/main/scala/akka/dispatch/DebuggingDispatcher.scala
with
2 additions
and
2 deletions
dispatcher/src/main/scala/akka/dispatch/DebuggingDispatcher.scala
+
2
−
2
View file @
41768110
...
...
@@ -121,8 +121,8 @@ object DebuggingDispatcher {
def
queryActorState
(
actorName
:
String
,
toGet
:
Boolean
)
:
Unit
=
{
actorMessagesMap
.
getActor
(
DispatcherUtils
.
getActorPath
(
actorName
))
match
{
case
Some
(
actor
)
=>
queryActorState
(
actor
.
asInstanceOf
[
ActorCell
],
toGet
:
Boolean
)
case
None
if
actorName
.
equals
(
"dead
l
etters"
)
=>
sendToDispatcher
(
SendResponse
(
ActionResponse
(
noStepNum
,
List
(),
List
(
State
(
"dead
l
etters"
,
StateColor
(
0
,
0
,
0
,
1
),
"No state"
)))))
case
None
if
actorName
.
equals
(
"dead
L
etters"
)
=>
sendToDispatcher
(
SendResponse
(
ActionResponse
(
noStepNum
,
List
(),
List
(
State
(
"dead
L
etters"
,
StateColor
(
0
,
0
,
0
,
1
),
"No state"
)))))
case
None
=>
printLog
(
CmdLineUtils
.
LOG_ERROR
,
"Cannot query actor state: "
+
actorName
+
" No such actor."
)
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment