Skip to content
This repository was archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
ISSUE #224: listing logs should exclude <default>
Browse files Browse the repository at this point in the history
Descriptions of the changes in this PR:

exclude `<default>` from listing logs

(the tests are covered by #227)

Author: Sijie Guo <sijie@apache.org>

Reviewers: Jia Zhai <None>

This closes #229 from sijie/fix_listing_log_pr, closes #224
  • Loading branch information
sijie authored and jiazhai committed Oct 24, 2017
1 parent 81e0fad commit 919b4df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ public static String normalizeClientId(String clientId) {
* @return true if it is reserved name, otherwise false.
*/
public static boolean isReservedStreamName(String name) {
return name.startsWith(".");
return name.startsWith(".") || name.startsWith("<");
}

/**
Expand Down

0 comments on commit 919b4df

Please sign in to comment.