fix: remove redundant log message
This commit is contained in:
parent
04f46f5227
commit
2a81fa1522
|
@ -387,11 +387,6 @@ on_get_status(_InstId, #{pool_name := PoolName, connect_timeout := Timeout} = St
|
||||||
ok ->
|
ok ->
|
||||||
{connected, State};
|
{connected, State};
|
||||||
{error, Reason} ->
|
{error, Reason} ->
|
||||||
?SLOG(error, #{
|
|
||||||
msg => "http_connector_get_status_failed",
|
|
||||||
reason => Reason,
|
|
||||||
state => State
|
|
||||||
}),
|
|
||||||
{disconnected, State, Reason}
|
{disconnected, State, Reason}
|
||||||
end.
|
end.
|
||||||
|
|
||||||
|
@ -404,7 +399,7 @@ do_get_status(PoolName, Timeout) ->
|
||||||
ok;
|
ok;
|
||||||
{error, Reason} = Error ->
|
{error, Reason} = Error ->
|
||||||
?SLOG(error, #{
|
?SLOG(error, #{
|
||||||
msg => "ehttpc_health_check_failed",
|
msg => "http_connector_get_status_failed",
|
||||||
reason => Reason,
|
reason => Reason,
|
||||||
worker => Worker
|
worker => Worker
|
||||||
}),
|
}),
|
||||||
|
|
Loading…
Reference in New Issue