From cfd59e0a250f66be6f858bbaf6b0510ed3365487 Mon Sep 17 00:00:00 2001 From: Tigran Najaryan <4194920+tigrannajaryan@users.noreply.github.com> Date: Thu, 21 Jul 2022 14:27:01 -0400 Subject: [PATCH] Add missing ReportsHealth capability (#111) When health reporting was added we forgot to add a corresponding bit in the AgentCapabilities. This adds the missing bit. --- specification.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/specification.md b/specification.md index b97c53e..9524fa1 100644 --- a/specification.md +++ b/specification.md @@ -452,6 +452,8 @@ enum AgentCapabilities { AcceptsOtherConnectionSettings = 0x00000200; // The Agent can accept restart requests. AcceptsRestartCommand = 0x00000400; + // The Agent will report Health via AgentToServer.health field. + ReportsHealth = 0x00000800; // Add new capabilities here, continuing with the least significant unused bit. }