mirror of
https://github.com/curl/curl.git
synced 2026-08-24 10:43:32 +03:00
conncache: eliminate cpool's diconnect callback
The callback, provided from url.c did the work that the cshutdn functionality also implemented. Remove it. Change some DEBUGF(infof()) to CURL_TRC_M(). Closes #16810
This commit is contained in:
parent
ac3c353747
commit
a95b291ec0
7 changed files with 16 additions and 79 deletions
|
|
@ -633,7 +633,9 @@ class TestDownload:
|
|||
docname = 'data-10k'
|
||||
port = env.port_for(proto)
|
||||
url = f'https://{env.domain1}:{port}/{docname}'
|
||||
client = LocalClient(name='hx-download', env=env)
|
||||
run_env = os.environ.copy()
|
||||
run_env['CURL_DEBUG'] = 'multi'
|
||||
client = LocalClient(name='hx-download', env=env, run_env=run_env)
|
||||
if not client.exists():
|
||||
pytest.skip(f'example client not built: {client.name}')
|
||||
r = client.run(args=[
|
||||
|
|
@ -667,7 +669,9 @@ class TestDownload:
|
|||
docname = 'data-10k'
|
||||
port = env.port_for(proto)
|
||||
url = f'https://{env.domain1}:{port}/{docname}'
|
||||
client = LocalClient(name='hx-download', env=env)
|
||||
run_env = os.environ.copy()
|
||||
run_env['CURL_DEBUG'] = 'multi'
|
||||
client = LocalClient(name='hx-download', env=env, run_env=run_env)
|
||||
if not client.exists():
|
||||
pytest.skip(f'example client not built: {client.name}')
|
||||
r = client.run(args=[
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue