File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
src/main/java/com/microsoft/azure/servicebus/amqp Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 44 <modelVersion>4.0.0</modelVersion>
55 <groupId>com.microsoft.azure</groupId>
66 <artifactId>azure-servicebus</artifactId>
7- <version>1.2.16 </version>
7+ <version>1.2.17 </version>
88 <licenses>
99 <license>
1010 <name>The MIT License (MIT)</name>
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ public void onConnectionLocalOpen(Event event)
2020
2121 Transport transport = Proton .transport ();
2222 transport .setMaxFrameSize (AmqpConstants .MAX_FRAME_SIZE );
23+ // To fix connection drops that the client recognizes only with a delay of 15 or 20 minutes
24+ transport .setIdleTimeout (60000 );
2325 transport .sasl ();
2426 transport .setEmitFlowEventOnSend (false );
2527 transport .bind (connection );
Original file line number Diff line number Diff line change 1313 <proton-j-version >0.31.0</proton-j-version >
1414 <junit-version >4.12</junit-version >
1515 <slf4j-version >1.7.0</slf4j-version >
16- <client-current-version >1.2.16 </client-current-version >
16+ <client-current-version >1.2.17 </client-current-version >
1717 </properties >
1818
1919 <modules >
You can’t perform that action at this time.
0 commit comments