Skip to content

Commit

Permalink
Merge pull request #147 from catalinaperalta/caperal/issue-131
Browse files Browse the repository at this point in the history
Resolution for issue #131
  • Loading branch information
catalinaperalta committed Oct 25, 2019
2 parents 6db7264 + a93b6bc commit 4014b0a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## `head`

## `v2.0.4`
- add comment on the `PartitionID` field in `SystemProperties` to clarify that it will always return a nil value [#131](https://github.com/Azure/azure-event-hubs-go/issues/131)

## `v2.0.3`
- fix send on closed channel for GetLeases [#142](https://github.com/Azure/azure-event-hubs-go/issues/142)

Expand Down
2 changes: 1 addition & 1 deletion event.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ type (
SequenceNumber *int64 `mapstructure:"x-opt-sequence-number"` // unique sequence number of the message
EnqueuedTime *time.Time `mapstructure:"x-opt-enqueued-time"` // time the message landed in the message queue
Offset *int64 `mapstructure:"x-opt-offset"`
PartitionID *int16 `mapstructure:"x-opt-partition-id"`
PartitionID *int16 `mapstructure:"x-opt-partition-id"` // This value will always be nil. For information related to the event's partition refer to the PartitionKey field in this type
PartitionKey *string `mapstructure:"x-opt-partition-key"`
}

Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ package eventhub

const (
// Version is the semantic version number
Version = "2.0.3"
Version = "2.0.4"
)

0 comments on commit 4014b0a

Please sign in to comment.