We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb1109d commit 6033483Copy full SHA for 6033483
test/smoke/framework/testCore/src/main/java/com/microsoft/applicationinsights/smoketest/AiSmokeTest.java
@@ -849,6 +849,10 @@ protected static Telemetry getTelemetry(int rddCount) throws Exception {
849
protected static Telemetry getTelemetry(int rddCount, Predicate<RemoteDependencyData> condition)
850
throws Exception {
851
852
+ if (rddCount > 3) {
853
+ throw new IllegalArgumentException("this method currently only supports rddCount up to 3");
854
+ }
855
+
856
Telemetry telemetry = new Telemetry();
857
858
List<Envelope> rdList = mockedIngestion.waitForItems("RequestData", 1);
0 commit comments