From d9ec2303e1c76c549e69293002990285a57fe416 Mon Sep 17 00:00:00 2001 From: Joe Grund Date: Tue, 16 Jun 2020 13:39:38 -0400 Subject: [PATCH] Add missing sfa table (#1973) add the sfacontroller table to listen / notify list. Signed-off-by: Joe Grund --- chroma_core/migrations/0018_sfa_json_notify.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/chroma_core/migrations/0018_sfa_json_notify.py b/chroma_core/migrations/0018_sfa_json_notify.py index a0f0c13513..dff1aecf66 100644 --- a/chroma_core/migrations/0018_sfa_json_notify.py +++ b/chroma_core/migrations/0018_sfa_json_notify.py @@ -11,7 +11,8 @@ tables = map( - build_tables, ["sfadiskdrive", "sfadiskslot", "sfaenclosure", "sfajob", "sfapowersupply", "sfastoragesystem"] + build_tables, + ["sfadiskdrive", "sfadiskslot", "sfaenclosure", "sfajob", "sfapowersupply", "sfastoragesystem", "sfacontroller"], ) forward_trigger_list = map(forward_trigger_template, tables)