mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
857ca2f5a1
from Arch
15 lines
393 B
Plaintext
15 lines
393 B
Plaintext
use requests as default http library because tornado fails silently
|
|
|
|
Index: salt/utils/http.py
|
|
--- salt/utils/http.py.orig
|
|
+++ salt/utils/http.py
|
|
@@ -217,7 +217,7 @@ def query(
|
|
opts = {}
|
|
|
|
if not backend:
|
|
- backend = opts.get("backend", "tornado")
|
|
+ backend = opts.get("backend", "requests")
|
|
|
|
proxy_host = opts.get("proxy_host", None)
|
|
if proxy_host:
|