Skip to content

Commit

Permalink
Inclusion Server handles Extended Node Add Status (#1015)
Browse files Browse the repository at this point in the history
Ref: SRH-1611
  • Loading branch information
bjyoungblood authored Nov 5, 2024
1 parent c6701c2 commit 7b2cc4a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/grizzly/inclusion_server.ex
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 7b2cc4a

Please sign in to comment.