golden hour
/opt/saltstack/salt/lib/python3.10/site-packages/salt/transport
⬆️ Go Up
Upload
File/Folder
Size
Actions
__init__.py
507 B
Del
OK
__pycache__
-
Del
OK
base.py
7.79 KB
Del
OK
client.py
3.43 KB
Del
OK
frame.py
2.76 KB
Del
OK
ipc.py
27.66 KB
Del
OK
local.py
1.37 KB
Del
OK
server.py
1.22 KB
Del
OK
tcp.py
36.58 KB
Del
OK
zeromq.py
33.15 KB
Del
OK
Edit: __init__.py
""" Encapsulate the different transports available to Salt. """ import logging import warnings from salt.transport.base import ( TRANSPORTS, publish_client, publish_server, request_client, request_server, ) log = logging.getLogger(__name__) # Suppress warnings when running with a very old pyzmq. This can be removed # after we drop support for Ubuntu 16.04 and Debian 9 warnings.filterwarnings( "ignore", message="IOLoop.current expected instance.*", category=RuntimeWarning )
Save