From c690cdb920446368eed2b22100192302dd9ea664 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 6 Jul 2022 18:37:16 +0000 Subject: [PATCH] Fix some bugs --- bootstrap-daemon/pvcbootstrapd.yaml.sample | 2 +- bootstrap-daemon/pvcbootstrapd.yaml.template | 2 +- bootstrap-daemon/pvcbootstrapd/Daemon.py | 3 --- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/bootstrap-daemon/pvcbootstrapd.yaml.sample b/bootstrap-daemon/pvcbootstrapd.yaml.sample index 5517951..8c9eb46 100644 --- a/bootstrap-daemon/pvcbootstrapd.yaml.sample +++ b/bootstrap-daemon/pvcbootstrapd.yaml.sample @@ -104,7 +104,7 @@ pvc: begin: "🤞" # A task is beginning success: "✅" # A task succeeded failure: "❌" # A task failed - completed: "👌" # A task is completed + completed: "👌" # A task is completed # The webhook body elements; this is specific to the webhook target, and is converted into raw # JSON before sending. # Two special variables are used: "{icon}" displays one of the above icons, and "{message}" displays diff --git a/bootstrap-daemon/pvcbootstrapd.yaml.template b/bootstrap-daemon/pvcbootstrapd.yaml.template index 0a8b3c1..9c00646 100644 --- a/bootstrap-daemon/pvcbootstrapd.yaml.template +++ b/bootstrap-daemon/pvcbootstrapd.yaml.template @@ -39,7 +39,7 @@ pvc: begin: "🤞" # A task is beginning success: "✅" # A task succeeded failure: "❌" # A task failed - completed: "👌" # A task is completed + completed: "👌" # A task is completed body: channel: "mychannel" username: "pvcbootstrapd" diff --git a/bootstrap-daemon/pvcbootstrapd/Daemon.py b/bootstrap-daemon/pvcbootstrapd/Daemon.py index 24d4bac..6a70769 100755 --- a/bootstrap-daemon/pvcbootstrapd/Daemon.py +++ b/bootstrap-daemon/pvcbootstrapd/Daemon.py @@ -250,9 +250,6 @@ def entrypoint(): notifications.send_webhook(config, "begin", "Starting up pvcbootstrapd") - cspec = git.load_cspec_yaml(config) - print(cspec) - # Initialize the database db.init_database(config)