From 0d8420b9a1550d2e14a6817c0220afaca689950d Mon Sep 17 00:00:00 2001 From: Chris White Date: Wed, 7 Oct 2020 12:22:13 -0700 Subject: [PATCH 1/2] Add changelog entry and fix schema definition --- changes/pr107.yaml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 changes/pr107.yaml diff --git a/changes/pr107.yaml b/changes/pr107.yaml new file mode 100644 index 00000000..aa7baffd --- /dev/null +++ b/changes/pr107.yaml @@ -0,0 +1,2 @@ +fix: + - "Fixes issue with Agent Config schema - [#107](https://github.com/PrefectHQ/server/pull/107)" From 91043b76130bae10353c455c968bf0472120d595 Mon Sep 17 00:00:00 2001 From: Chris White Date: Wed, 7 Oct 2020 12:22:28 -0700 Subject: [PATCH 2/2] Update agent config schema: --- src/prefect_server/graphql/schema/agents.graphql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/prefect_server/graphql/schema/agents.graphql b/src/prefect_server/graphql/schema/agents.graphql index 4d6837e2..977c237f 100644 --- a/src/prefect_server/graphql/schema/agents.graphql +++ b/src/prefect_server/graphql/schema/agents.graphql @@ -53,7 +53,7 @@ input create_agent_config_input { input delete_agent_config_input { "The ID of the agent config to delete" - agent_id: UUID! + agent_config_id: UUID! } input update_agent_config_input {