Skip to content

Commit

Permalink
Fix HTTP proxy teardown (#15229)
Browse files Browse the repository at this point in the history
(cherry picked from commit 46b510f)
  • Loading branch information
vsedmik authored and web-flow committed May 30, 2024
1 parent 53e6062 commit d2ed6a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pytest_fixtures/component/http_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,5 @@ def setup_http_proxy(request, module_manifest_org, target_sat):
yield http_proxy, request.param
target_sat.update_setting('content_default_http_proxy', content_proxy_value)
target_sat.update_setting('http_proxy', general_proxy_value)
http_proxy.delete()
if http_proxy:
http_proxy.delete()

0 comments on commit d2ed6a4

Please sign in to comment.