diff --git a/.github/workflows/reliability-copilot.yml b/.github/workflows/reliability-copilot.yml index 6ec71063fd..8a384b8a04 100644 --- a/.github/workflows/reliability-copilot.yml +++ b/.github/workflows/reliability-copilot.yml @@ -23,8 +23,7 @@ jobs: # Run Reliability Copilot in Doker Container - name: Run Copilot run: | - docker run --rm \ - -e ONEUPTIME_URL='https://test.oneuptime.com' \ + docker run --rm -e ONEUPTIME_URL='https://test.oneuptime.com' \ -e ONEUPTIME_REPOSITORY_SECRET_KEY=${{ secrets.COPILOT_ONEUPTIME_REPOSITORY_SECRET_KEY }} \ -e CODE_REPOSITORY_PASSWORD=${{ github.token }} \ -e CODE_REPOSITORY_USERNAME='simlarsen' \ diff --git a/Probe/Services/Register.ts b/Probe/Services/Register.ts index 09b7c292fd..1ce06e5324 100644 --- a/Probe/Services/Register.ts +++ b/Probe/Services/Register.ts @@ -31,7 +31,7 @@ export default class Register { if (!pingMonitoringCheck && websiteMonitoringCheck) { // probe is online but ping monitoring is blocked by the cloud provider. Fallback to port monitoring. logger.warn( - "Ping monitoring is disabled on this machine. Fallback to port monitoring", + "Ping monitoring is disabled on this machine. Ping/ICMP checks are usually disabled by cloud providers (Azure, AWS, GCP, etc.). If you need ICMP checks, please use a different provider or use port checks.", ); LocalCache.setString("PROBE", "PING_MONITORING", "PORT"); }