(args)
| 849 | |
| 850 | |
| 851 | def get_request_params(args): |
| 852 | url = fedml._get_backend_service() |
| 853 | |
| 854 | cert_path = None |
| 855 | if str(url).startswith("https://"): |
| 856 | cur_source_dir = os.path.dirname(__file__) |
| 857 | cert_path = os.path.join( |
| 858 | cur_source_dir, "ssl", "open-" + config_version + ".fedml.ai_bundle.crt" |
| 859 | ) |
| 860 | |
| 861 | return url, cert_path |
| 862 | |
| 863 | |
| 864 | def on_log_mqtt_disconnected(mqtt_client_object): |
no outgoing calls
no test coverage detected