From face66734727716a5de525a065d684b516a97ad7 Mon Sep 17 00:00:00 2001 From: Tom Wiesing Date: Wed, 5 Oct 2022 16:51:04 +0200 Subject: [PATCH] cmd/monday: Add 'update_prefix_config' --- cmd/monday.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cmd/monday.go b/cmd/monday.go index a7b0f67..2ddceda 100644 --- a/cmd/monday.go +++ b/cmd/monday.go @@ -55,6 +55,12 @@ func (monday monday) Run(context wisski_distillery.Context) error { return err } + if err := logging.LogOperation(func() error { + return context.Exec("update_prefix_config") + }, context.IOStream, "Running update_prefix_config"); err != nil { + return err + } + if monday.UpdateInstances { if err := logging.LogOperation(func() error { return context.Exec("blind_update")