Skip to content

Commit

Permalink
Update omi_connector.lua (#16)
Browse files Browse the repository at this point in the history
fix url value in post request
  • Loading branch information
SomeAverageDev authored and kduret committed Feb 14, 2023
1 parent 3c2c78a commit d7ef379
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stream-connectors/omi/omi_connector.lua
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ local function flush()
local respbody = {}
local body, code, headers, status = http.request {
method = "POST",
url = "https://" .. my_data.ipaddr .. ":" .. my_data.port .. my_data.port,
url = "https://" .. my_data.ipaddr .. ":" .. my_data.port .. my_data.url,
source = ltn12.source.string(buf),
headers =
{
Expand Down

0 comments on commit d7ef379

Please sign in to comment.