Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/fedml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
_global_training_type = None
_global_comm_backend = None

__version__ = "0.7.340"
__version__ = "0.7.341"


def init(args=None):
Expand Down
2 changes: 2 additions & 0 deletions python/fedml/cli/edge_deployment/client_diagnosis.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ def check_mqtt_connection():
return False;
time.sleep(1)

mqtt_mgr.disconnect()
mqtt_mgr.loop_stop()
return True
except Exception as e:
print("MQTT connect exception: {}".format(str(e)))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,9 @@ def _on_message_impl(self, msg):
"mqtt_s3.on_message: model params length %d" % len(model_params)
)

model_url = payload_obj.get(Message.MSG_ARG_KEY_MODEL_PARAMS_URL, "")
logging.info("mqtt_s3.on_message: model url {}".format(model_url))

# replace the S3 object key with raw model params
payload_obj[Message.MSG_ARG_KEY_MODEL_PARAMS] = model_params
else:
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def finalize_options(self):

setup(
name="fedml",
version="0.7.340",
version="0.7.341",
author="FedML Team",
author_email="[email protected]",
description="A research and production integrated edge-cloud library for "
Expand Down