-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed bug leading to semaphore leak when filtering messages (#1891)
* Fixed bug leading to semaphore leak * Make filtered message receiver always returning a message * Make filtered message receiver always returning a message * Fixed message filtering for batch subscription * Fixed message filtering for batch subscription * Fixed message filtering for batch subscription * Fixed message filtering for batch subscription * Fixed message filtering for batch subscription * Fixed message filtering for batch subscription * CR * Make checkstyle happy * Make isFiltered thread safe
- Loading branch information
1 parent
8057c70
commit 1b730c2
Showing
8 changed files
with
163 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...sumers/src/main/java/pl/allegro/tech/hermes/consumers/consumer/profiling/ConsumerRun.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
package pl.allegro.tech.hermes.consumers.consumer.profiling; | ||
|
||
public enum ConsumerRun { | ||
EMPTY, DELIVERED, DISCARDED, RETRIED | ||
EMPTY, DELIVERED, DISCARDED, RETRIED, FILTERED | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters