Skip to content

Commit

Permalink
1.11.3 released. De-dup of archive and cluster field ids. Remove unne…
Browse files Browse the repository at this point in the history
…cessary cast for Long2LongHashMap iterator.
  • Loading branch information
tmontgomery committed Oct 29, 2018
1 parent 83d057e commit ed7b6ee
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions aeron-archive/src/main/resources/aeron-archive-codecs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@
description="Request a subscription stop recording">
<field name="controlSessionId" id="1" type="int64"/>
<field name="correlationId" id="2" type="int64"/>
<field name="subscriptionId" id="2" type="int64"/>
<field name="subscriptionId" id="3" type="int64"/>
</sbe:message>

<sbe:message name="StopPositionRequest"
Expand All @@ -181,7 +181,7 @@
<field name="controlSessionId" id="1" type="int64"/>
<field name="correlationId" id="2" type="int64"/>
<field name="minRecordingId" id="3" type="int64"/>
<field name="sessionId" id="5" type="int32"/>
<field name="sessionId" id="4" type="int32"/>
<field name="streamId" id="5" type="int32"/>
<data name="channel" id="6" type="varAsciiEncoding"/>
</sbe:message>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,7 @@ boolean cancelTimer(final long correlationId)

void snapshot(final ConsensusModuleSnapshotTaker snapshotTaker)
{
final Long2LongHashMap.EntryIterator iter =
(Long2LongHashMap.EntryIterator)timerIdByCorrelationIdMap.entrySet().iterator();
final Long2LongHashMap.EntryIterator iter = timerIdByCorrelationIdMap.entrySet().iterator();

while (iter.hasNext())
{
Expand Down
2 changes: 1 addition & 1 deletion aeron-cluster/src/main/resources/aeron-cluster-codecs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@
description="Serialized state of Cluster Members">
<field name="memberId" id="1" type="int32"/>
<field name="highMemberId" id="2" type="int32"/>
<data name="clusterMembers" id="1" type="varAsciiEncoding"/>
<data name="clusterMembers" id="3" type="varAsciiEncoding"/>
</sbe:message>

</sbe:messageSchema>
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ def aeronGroup = 'io.aeron'
def aeronVersion = file('version.txt').text.trim()
def aeronJavaVersion = '1.8'

def agronaVersion = '0.9.25'
def sbeVersion = '1.8.9'
def agronaVersion = '0.9.26'
def sbeVersion = '1.9.0'

group = aeronGroup
version = aeronVersion
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.11.3-SNAPSHOT
1.11.3

0 comments on commit ed7b6ee

Please sign in to comment.