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
{{ message }}
This repository was archived by the owner on May 14, 2025. It is now read-only.
- use the maven-jar-plugin to generate standalone jar for the ITs.
- Harden the ITs getApplicationUri utilities to ensure it works with k8s platforms.
- Fix an issue with the logfile path to ensure proper working with K8s platforms.
Resolves#4400
Part of the spring-attic/spring-cloud-dataflow-acceptance-tests#332 Epic.
Copy file name to clipboardExpand all lines: spring-cloud-dataflow-server/src/test/java/org/springframework/cloud/dataflow/integration/test/DataFlowIT.java
+9-21Lines changed: 9 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -326,12 +326,9 @@ public void streamTransform() {
Copy file name to clipboardExpand all lines: spring-cloud-dataflow-server/src/test/java/org/springframework/cloud/dataflow/integration/test/util/RuntimeApplicationHelper.java
+11-3Lines changed: 11 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,7 @@
19
19
importjava.util.Map;
20
20
importjava.util.stream.Collectors;
21
21
22
+
importorg.awaitility.Awaitility;
22
23
importorg.slf4j.Logger;
23
24
importorg.slf4j.LoggerFactory;
24
25
@@ -108,6 +109,10 @@ public Map<String, Map<String, String>> getApplicationInstances(String streamNam
108
109
* @return Returns a map of app instance GUIDs and their Log content. A single entry per app instance.
0 commit comments