From 7b2cc4a57c2320544e715d8c8f22961b2dbe13b7 Mon Sep 17 00:00:00 2001 From: Ben Youngblood Date: Tue, 5 Nov 2024 15:12:21 -0700 Subject: [PATCH] Inclusion Server handles Extended Node Add Status (#1015) Ref: SRH-1611 --- lib/grizzly/inclusion_server.ex | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/grizzly/inclusion_server.ex b/lib/grizzly/inclusion_server.ex index b64f6947..88671896 100644 --- a/lib/grizzly/inclusion_server.ex +++ b/lib/grizzly/inclusion_server.ex @@ -319,7 +319,8 @@ defmodule Grizzly.InclusionServer do {:noreply, state} end - def handle_report(%Command{name: :node_add_status} = command, state) do + def handle_report(%Command{name: name} = command, state) + when name in [:node_add_status, :extended_node_add_status] do report = Report.new(:complete, :command, 1, command: command) send_to_handler(state, report)