You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SendLargestMessage was never supposed to build a batch message of multiple max-sized messages. It was just supposed to be one max sized message
The mux tests here should not retry on open because they expect to throw an exception
Copy file name to clipboardExpand all lines: iot-e2e-tests/common/src/test/java/tests/integration/com/microsoft/azure/sdk/iot/iothub/MultiplexingClientTests.java
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1369,7 +1369,9 @@ public void registerDeviceWithIncorrectCredentialsBeforeOpenThrowsOnOpen() throw
1369
1369
booleanexpectedExceptionThrown = false;
1370
1370
try
1371
1371
{
1372
-
testInstance.multiplexingClient.open(true);
1372
+
// Note that we are opting to not retry on open because the first attempt should result in the caught
1373
+
// exception below.
1374
+
testInstance.multiplexingClient.open(false);
1373
1375
}
1374
1376
catch (MultiplexingClientRegistrationExceptione)
1375
1377
{
@@ -1469,7 +1471,7 @@ public void registerDevicesWithIncorrectCredentialsBeforeOpenThrowsOnOpen() thro
Copy file name to clipboardExpand all lines: iot-e2e-tests/common/src/test/java/tests/integration/com/microsoft/azure/sdk/iot/iothub/telemetry/SendMessagesTests.java
+2-13Lines changed: 2 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -142,20 +142,9 @@ public void sendManySmallMessagesAsBatch() throws Exception
0 commit comments