Skip to content

Commit aed83d5

Browse files
authored
fix getNormalOffset in SubscriptionOffset (#34)
1 parent 7b3ab56 commit aed83d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/main/java/io/hstream/SubscriptionOffset.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public SpecialOffset getSpecialOffset() {
4343
}
4444

4545
public RecordId getNormalOffset() {
46-
if (isSpecialOffset()) {
46+
if (isNormalOffset()) {
4747
return recordId;
4848
} else {
4949
throw new IllegalStateException("subscriptionOffset is not normal offset");

0 commit comments

Comments
 (0)