Skip to content

Commit bf04111

Browse files
authored
Sequence number in Event Data is of type int, not long (Azure#15801)
1 parent 44b21a1 commit bf04111

File tree

1 file changed

+1
-1
lines changed
  • sdk/eventhub/azure-eventhub/azure/eventhub

1 file changed

+1
-1
lines changed

sdk/eventhub/azure-eventhub/azure/eventhub/_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def sequence_number(self):
176176
# type: () -> Optional[int]
177177
"""The sequence number of the event.
178178
179-
:rtype: int or long
179+
:rtype: int
180180
"""
181181
return self.message.annotations.get(PROP_SEQ_NUMBER, None)
182182

0 commit comments

Comments
 (0)