Skip to content

Commit

Permalink
prepend QA failure message with a colon
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandip117 committed Sep 27, 2024
1 parent 66c9095 commit f10158c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions control/action.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def QA_check(self,plugin_info):
A method to check the QA of the output of LLD analysis. This method checks
the output of the QA plugin `pl-lld_chxr` and determines if a QA failure as occured.
As an effect of this check, the name of the feed of which this plugin, `pl-lld_chxr` is
a part, is changed. The updated name becomes `QA-failed-<existing feed name>`.
a part, is changed. The updated name becomes `QA-failed:<existing feed name>`.
Args:
plugin_info: A dictionary representing a plugin instance of CUBE
Expand All @@ -287,7 +287,7 @@ def QA_check(self,plugin_info):
feed_id = plugin_info['feed_id']
feed = self.cl.get_feed_by_id(feed_id)
name = feed['name']
self.request.put(f'{self.env.CUBE("url")}{feed_id}/', {'name': f'QA-failed-{name}'})
self.request.put(f'{self.env.CUBE("url")}{feed_id}/', {'name': f'QA-failed:{name}'})

def pluginParameters_setInNodes(self,
d_piping : dict,
Expand Down
2 changes: 1 addition & 1 deletion dylld.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
pluginOutputDir: Path
ld_forestResult: list = []

__version__ = "4.4.42"
__version__ = "4.4.44"

DISPLAY_TITLE = r"""
_ _ _ _ _
Expand Down

0 comments on commit f10158c

Please sign in to comment.