Skip to content

Commit

Permalink
Merge pull request #99 from vishnuchalla/bug-fix
Browse files Browse the repository at this point in the history
bug fix in tags list
  • Loading branch information
vishnuchalla authored Dec 11, 2023
2 parents c2eb9e4 + f3da60f commit 66c6752
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dittybopper/syncer/entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def create_dashboards(self):
if "tags" in dashboard_json.keys():
dashboard_json["tags"].append(self.git_commit_hash)
else:
dashboard_json["tags"] = self.git_commit_hash
dashboard_json["tags"] = [self.git_commit_hash]
try:
response = requests.post(
f"{self.grafana_url}/api/dashboards/db",
Expand Down

0 comments on commit 66c6752

Please sign in to comment.