Skip to content

Commit

Permalink
Issue #2 - Fix typo in client status output.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdferris committed Jun 19, 2012
1 parent 9b4b023 commit 2b6d199
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ public void getStatus(Map<String, String> status) {
for (ClientSubscriptionInstance instance : _activeSubscriptions.values()) {
SubscriptionId id = instance.getSubscriptionId();
String prefix = "siri.server.activeSubscription["
+ id.getSubscriptionId() + "," + id.getSubscriptionId() + "]";
+ id.getSubscriberId() + "," + id.getSubscriptionId() + "]";
instance.getStatus(prefix, status);
}
}
Expand Down

0 comments on commit 2b6d199

Please sign in to comment.