summaryrefslogtreecommitdiff
path: root/datasources/datastore-functions.sh
diff options
context:
space:
mode:
Diffstat (limited to 'datasources/datastore-functions.sh')
-rw-r--r--datasources/datastore-functions.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/datasources/datastore-functions.sh b/datasources/datastore-functions.sh
index 7cd74a0..22a42ce 100644
--- a/datasources/datastore-functions.sh
+++ b/datasources/datastore-functions.sh
@@ -5,7 +5,7 @@ DATASTORE_BASE="http://localhost:8080/api"
put_value_sensor_now() {
sensor=$1
value=$2
- curl -s -i -X PUT \
+ curl -s -X PUT \
--data-binary "${value}" \
"${DATASTORE_BASE}/value/${sensor}"
return $?