Open machinekoder opened 6 years ago
I noticed that the GetParam service returns a Python print string instead of something JSON encoded: https://github.com/strands-project/mongodb_store/blob/kinetic-devel/mongodb_store/scripts/config_manager.py#L228
GetParam
This makes it impossible to read any collection value types with the service in a consistent way.
Solution: return a JSON encoded string json.dumps() instead.
json.dumps()
I noticed that the
GetParam
service returns a Python print string instead of something JSON encoded: https://github.com/strands-project/mongodb_store/blob/kinetic-devel/mongodb_store/scripts/config_manager.py#L228This makes it impossible to read any collection value types with the service in a consistent way.
Solution: return a JSON encoded string
json.dumps()
instead.