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 842eaa8 commit 4b61c0bCopy full SHA for 4b61c0b
e2e-tests/test_batch_job.sh
@@ -52,20 +52,4 @@ wait_for_status $BATCH_JOB_IDENTIFIER '.status.jobStatus.state' FINISHED ${TIMEO
52
exit 1
53
}
54
55
-echo "Verifying job results..."
56
-# Check if the output file exists and contains results
57
-result=$(kubectl exec $jm_pod_name -c flink-main-container -- cat /tmp/wordcount-result.txt 2>/dev/null)
58
-if [ -z "$result" ]; then
59
- echo "Output file is empty or does not exist"
60
- exit 1
61
-fi
62
-
63
-echo "Checking for expected output patterns..."
64
-# Check for some expected patterns in the output
65
-if ! echo "$result" | grep -q "flink"; then
66
- echo "Expected word 'flink' not found in results"
67
- echo "Results: $result"
68
69
70
71
echo "Successfully completed batch job test"
0 commit comments