From 823aeda9fe4a2c8ffd5ec55e319313a7e743845b Mon Sep 17 00:00:00 2001 From: Stefan Ottosson Date: Fri, 24 May 2024 08:26:28 +0200 Subject: [PATCH] Revert "fix: update some examples" This reverts commit b2ede38269795f2181beb023736bdb3bf3ab8bb6. --- extra/push-examples/bash-curl/index.sh | 3 +-- extra/push-examples/javascript-fetch/index.js | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/extra/push-examples/bash-curl/index.sh b/extra/push-examples/bash-curl/index.sh index 7a93bf31a..3031255f4 100644 --- a/extra/push-examples/bash-curl/index.sh +++ b/extra/push-examples/bash-curl/index.sh @@ -2,10 +2,9 @@ # Filename: index.sh PUSH_URL="https://example.com/api/push/key?status=up&msg=OK&ping=" INTERVAL=60 -HTTP_METHOD="GET" while true; do - curl -X $HTTP_METHOD -s -o /dev/null $PUSH_URL + curl -s -o /dev/null $PUSH_URL echo "Pushed!" sleep $INTERVAL done diff --git a/extra/push-examples/javascript-fetch/index.js b/extra/push-examples/javascript-fetch/index.js index 4ead43b35..9d21d0db8 100644 --- a/extra/push-examples/javascript-fetch/index.js +++ b/extra/push-examples/javascript-fetch/index.js @@ -1,10 +1,9 @@ // Supports: Node.js >= 18, Deno, Bun const pushURL = "https://example.com/api/push/key?status=up&msg=OK&ping="; const interval = 60; -const method = "GET"; const push = async () => { - await fetch(pushURL, { method }); + await fetch(pushURL); console.log("Pushed!"); };