Skip to content

Commit

Permalink
Merge pull request #234 from zhujun98/fix_bug_in_special_suite_pipeline
Browse files Browse the repository at this point in the history
Fix correlate bug in special suite
  • Loading branch information
zhujun98 authored Jun 22, 2020
2 parents 3cb1b48 + 5e2dc08 commit 1598f3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extra_foam/special_suite/special_analysis_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ def run(self):
"timeout": config["CLIENT_TIME_OUT"]
}
if self._client_instance_type == KaraboGateClient:
kwargs["connect"] = False
kwargs["connect"] = False

with self._client_instance_type(self._endpoint_st, **kwargs) as client:
self.log.info(f"Connected to {self._endpoint_st}")
Expand Down Expand Up @@ -699,7 +699,7 @@ def run(self):
continue

try:
correlated, dropped = self._transformer_st.correlate(data)
correlated, _, dropped = self._transformer_st.correlate(data)
for tid, err in dropped:
self.log.error(err)
except Exception as e:
Expand Down

0 comments on commit 1598f3b

Please sign in to comment.