We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8496d6d commit 97a5240Copy full SHA for 97a5240
.github/workflows/industrial-edge-insights-time-series-pull-request.yml
@@ -80,6 +80,13 @@ jobs:
80
make up_mqtt_ingestion app=wind-turbine-anomaly-detection
81
echo "Deploying using opcua ingestion"
82
make up_opcua_ingestion app=wind-turbine-anomaly-detection
83
+ while IFS= read -r line; do
84
+ echo "$line"
85
+ if [[ "$line" == *"Attempting to connect to Kapacitor"* ]]; then
86
+ echo "⚠️ Found Kapacitor connection attempt - exiting"
87
+ exit 1
88
+ fi
89
+ done < <(timeout 30s docker logs -f ia-time-series-analytics-microservice 2>&1)
90
- name: Undeploying Wind Turbine Anomaly Detection Sample App
91
run: |
92
cd "${{ github.workspace }}"
0 commit comments