Skip to content

Commit

Permalink
updated chris client and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandip117 committed Sep 13, 2024
1 parent b1d711a commit 3f43fdd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions control/action.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,8 @@ def QA_check(self,plugin_info):
error_code = 'QA check failed'
if QA_plugin in plugin_info['plugin_name'] and error_code in plugin_info['summary']:
feed_id = plugin_info['feed_id']
feed = self.cl.get_feeds({'feed_id': feed_id})
name = feed['data'][0]['name']
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}'})

def pluginParameters_setInNodes(self,
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.40"
__version__ = "4.4.42"

DISPLAY_TITLE = r"""
_ _ _ _ _
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pudb
pflogf
pfmisc
loguru
python-chrisclient==2.9.1
python-chrisclient==2.11.1
pftag==1.2.22
pflog==1.2.26
pftel-client

0 comments on commit 3f43fdd

Please sign in to comment.