We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
conn.modules
Desired: no error on the server side Actual: see screenshot
Server:
server = ThreadedServer(SlaveService, hostname=args.host, port=args.port, protocol_config={'sync_request_timeout': 600}) server.start()
Client:
if 'test_name' in conn.modules: pass if abs_name in conn.modules: pass
The text was updated successfully, but these errors were encountered:
Added unit test for __contains__ method on ModuleNamespace to validate …
c15b5de
…#516
2b13aae
563ebf9
Fixed #516 by adjusting ModuleNamespace contains logic to not raise e…
fc21a3b
…xceptions using importlib (also replaced __import__ w/ importlib.import_module)
comrumino
No branches or pull requests
Desired: no error on the server side
Actual: see
screenshot
Environment
5.0.1
3.8
Server: win-10-x64
Client: debian (5.10)
Minimal example
Server:
Client:
The text was updated successfully, but these errors were encountered: