make exception from "_process_result" a "no-result" log
so that it follows the doc and tests.
This commit is contained in:
parent
7e2583be56
commit
0890c7e966
|
@ -182,7 +182,7 @@ from_pattern, to_pattern
|
||||||
|
|
||||||
missing_ok
|
missing_ok
|
||||||
Suppress warnings and errors if a version checking module finds nothing.
|
Suppress warnings and errors if a version checking module finds nothing.
|
||||||
Currently only ``regex`` supports it.
|
Not all sources support it.
|
||||||
|
|
||||||
proxy
|
proxy
|
||||||
The HTTP proxy to use. The format is ``proto://host:port``, e.g.
|
The HTTP proxy to use. The format is ``proto://host:port``, e.g.
|
||||||
|
|
|
@ -444,7 +444,7 @@ async def process_result(
|
||||||
if isinstance(r1, Exception):
|
if isinstance(r1, Exception):
|
||||||
entry_waiter.set_exception(r.name, r1)
|
entry_waiter.set_exception(r.name, r1)
|
||||||
# no versions are returned from "apply_list_options"?
|
# no versions are returned from "apply_list_options"?
|
||||||
logger.error('an error occurred', name=r.name, error=str(r1))
|
logger.error('no-result', name=r.name, error=str(r1))
|
||||||
has_failures = True
|
has_failures = True
|
||||||
continue
|
continue
|
||||||
check_version_update(oldvers, r.name, r1, verbose)
|
check_version_update(oldvers, r.name, r1, verbose)
|
||||||
|
|
Loading…
Reference in New Issue