Island: Fix function call to load config in new configuration resource

This commit is contained in:
Shreya Malviya 2022-06-22 08:51:21 -07:00
parent e25eb194a1
commit 104c7ac210
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ class AgentConfiguration(AbstractResource):
configuration_json = json.loads(request_contents["config"])
try:
configuration_object = self._schema.loads(configuration_json)
configuration_object = self._schema.load(configuration_json)
self._agent_configuration_repository.store_configuration(configuration_object)
return make_response({}, 200)
except marshmallow.exceptions.ValidationError: