From 4654450bc8eba079575ebc9bc6b4deba42c6c57e Mon Sep 17 00:00:00 2001 From: Lucas Manuel Rodriguez Date: Wed, 30 Aug 2023 17:45:41 -0300 Subject: [PATCH] Fix expected number of hosts for the `Test fleetctl preview` workflow (#13605) Similar to the other we fixed recently the same way: https://github.com/fleetdm/fleet/pull/13329 --- .github/workflows/fleetctl-preview.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/fleetctl-preview.yml b/.github/workflows/fleetctl-preview.yml index 7e7522b777..bf3134e0ed 100644 --- a/.github/workflows/fleetctl-preview.yml +++ b/.github/workflows/fleetctl-preview.yml @@ -39,7 +39,7 @@ jobs: fleetctl preview sleep 10 fleetctl get hosts | tee hosts.txt - [ $( cat hosts.txt | grep online | wc -l) -eq 8 ] + [ $( cat hosts.txt | grep online | wc -l) -eq 9 ] shell: bash - name: Get fleet logs