Skip to content

Commit

Permalink
0002840: ProcessInfo key contains channel thread not channel Id since
Browse files Browse the repository at this point in the history
3.8.0
  • Loading branch information
jumpmind-josh committed Sep 30, 2016
1 parent d178c7b commit 5949bee
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -202,10 +202,14 @@ public long getCurrentLoadId() {
return currentLoadId;
}

public String getCurrentChannelId() {
public String getCurrentChannelThread() {
if (getKey().getChannelId() != null && getKey().getChannelId().length() > 0) {
return getKey().getChannelId();
}
return "";
}

public String getCurrentChannelId() {
return currentChannelId;
}

Expand Down

0 comments on commit 5949bee

Please sign in to comment.