From 83822a165c7b2db836977ad9bb8d5ffdf5c0249c Mon Sep 17 00:00:00 2001 From: Nick De Villiers Date: Mon, 30 Sep 2024 09:58:46 +0100 Subject: [PATCH] fix: Remove 'Wait for MAAS boot resources' step This step seems to be what's causing the issues in sitespeed on MAAS UI, since it's trying to use an admin command without logging in. --- action.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/action.yml b/action.yml index 84adb0a..4443932 100644 --- a/action.yml +++ b/action.yml @@ -55,6 +55,3 @@ runs: run: | set -x sudo maas init region+rack --maas-url=${{inputs.maas-url}} --database-uri maas-test-db:/// - - name: Wait for MAAS boot resources - shell: bash - run: while [ $(maas admin boot-resources is-importing | cat) == "true" ]; do sleep 10; done; echo "syncing finished"