X-Git-Url: https://git.rvb.name/weathermon.git/blobdiff_plain/76cb925db11bf98d7fc7030401f05f68043cc89a..2b43b1c28e9ced6c475904604df1c99b78cd8a71:/bin/weathermon?ds=sidebyside diff --git a/bin/weathermon b/bin/weathermon index 804ba25..2314e1a 100755 --- a/bin/weathermon +++ b/bin/weathermon @@ -100,12 +100,7 @@ function submitValue(type,id,param,val) url = url:gsub("//","//"..web_user..":"..web_pass.."@",1) end - local result,code = http.request ({ - url=url, create=function() - local req_sock = socket.tcp() - req_sock:settimeout(web_timeout) - return req_sock - end}) + local result,code = http.request (url) if code ~= 200 and backlog_con then printLog("writing record to backlog...") @@ -189,7 +184,7 @@ function processJson(str) if not mqtt_client:socket() then mqtt_client:reconnect() end - mqtt_client:publish(mqtt_path,v) + mqtt_client:publish(mqtt_path,v,0,0) mqtt_client:loop() end end @@ -252,7 +247,7 @@ function processLine(str) return '{'..name..'}' end end) - mqtt_client:publish(mqtt_path,v) + mqtt_client:publish(mqtt_path,v,0,0) mqtt_client:loop() end end @@ -293,7 +288,7 @@ function processLine(str) return '{'..name..'}' end end) - mqtt_client:publish(mqtt_path,msg_body) + mqtt_client:publish(mqtt_path,msg_body,0,0) mqtt_client:loop() end if alarm_exec then @@ -336,7 +331,7 @@ end if web_url then http = require("socket.http") - socket = require("socket") + http.TIMEOUT = web_timeout end if mqtt_host then