Skip to content

Commit c1401e7

Browse files
committed
fixing typos
1 parent e1717f1 commit c1401e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python-ec2-default-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ jobs:
258258

259259
- name: Validate CWAgent metrics
260260
id: cwagent-metric-validation
261-
if: (success() || ( steps.log-validation.outcome == 'failure') && !cancelled()
261+
if: (success() || steps.log-validation.outcome == 'failure') && !cancelled()
262262
run: ./gradlew validator:run --args='-c python/ec2/default/custom-metric-validation.yml
263263
--testing-id ${{ env.TESTING_ID }}
264264
--endpoint http://${{ env.MAIN_SERVICE_ENDPOINT }}
@@ -275,7 +275,7 @@ jobs:
275275

276276
- name: Validate generated traces
277277
id: trace-validation
278-
if: (success() || steps.log-validation.outcome == 'failure' || steps.metric-validation.outcome == 'failure' || (steps.cwagent-metric-validation.outcome == 'failure') && !cancelled()
278+
if: (success() || steps.log-validation.outcome == 'failure' || steps.metric-validation.outcome == 'failure' || steps.cwagent-metric-validation.outcome == 'failure') && !cancelled()
279279
run: ./gradlew validator:run --args='-c python/ec2/default/trace-validation.yml
280280
--testing-id ${{ env.TESTING_ID }}
281281
--endpoint http://${{ env.MAIN_SERVICE_ENDPOINT }}

0 commit comments

Comments
 (0)