We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf28ab0 commit a6bb4d7Copy full SHA for a6bb4d7
app/api/v2/handlers/config_api.py
@@ -40,7 +40,9 @@ async def get_config_with_name(self, request):
40
description='Use fields from the AgentConfigUpdateSchema in the request body to '
41
'update the Agent Configuration file.')
42
@aiohttp_apispec.request_schema(AgentConfigUpdateSchema)
43
- @aiohttp_apispec.response_schema(AgentConfigUpdateSchema)
+ @aiohttp_apispec.response_schema(AgentConfigUpdateSchema,
44
+ description='The response consists of data from the Agent configuration file '
45
+ 'dumped in the AgentConfigUpdateSchema format.')
46
async def update_agents_config(self, request):
47
schema = AgentConfigUpdateSchema()
48
data = await self.parse_json_body(request, schema)
0 commit comments