manman-sync: use error codes correctly
This commit is contained in:
parent
4411acd89d
commit
f3673173b1
@ -32,11 +32,11 @@ if uci:get_bool('gluon-manman-sync', 'sync', 'enabled') then
|
|||||||
local success, a, b, c = pcall(function() return fetch.request_raw(manapi .. '/') end)
|
local success, a, b, c = pcall(function() return fetch.request_raw(manapi .. '/') end)
|
||||||
if not success then
|
if not success then
|
||||||
print('E: couldnt reach manman: ' .. a)
|
print('E: couldnt reach manman: ' .. a)
|
||||||
return 2
|
return 1
|
||||||
else
|
else
|
||||||
if a ~= 200 then
|
if a ~= 200 then
|
||||||
print('E: couldnt reach manman - unexpected fetch result', a, b, c)
|
print('E: couldnt reach manman - unexpected fetch result', a, b, c)
|
||||||
return 2
|
return 1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -51,12 +51,12 @@ if uci:get_bool('gluon-manman-sync', 'sync', 'enabled') then
|
|||||||
|
|
||||||
if code ~= 200 then
|
if code ~= 200 then
|
||||||
print('E: got status code ' .. code)
|
print('E: got status code ' .. code)
|
||||||
return 2
|
return 1
|
||||||
end
|
end
|
||||||
|
|
||||||
if code < 1 then
|
if code < 1 then
|
||||||
print('E: failed to fetch')
|
print('E: failed to fetch')
|
||||||
return 2
|
return 1
|
||||||
end
|
end
|
||||||
|
|
||||||
-- cloudflare's reverse proxies send http chunked responses with chunk sizes
|
-- cloudflare's reverse proxies send http chunked responses with chunk sizes
|
||||||
|
Loading…
Reference in New Issue
Block a user