Skip to content

Commit

Permalink
Comment out PR code to check if that is the issue in the CI pipeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
matpompili committed Dec 26, 2024
1 parent 89976f7 commit ce873d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/connection/aws_ssm.py
Original file line number Diff line number Diff line change
Expand Up @@ -749,8 +749,8 @@ def _post_process(self, stdout, mark_begin):
stdout = stdout[:stdout.rfind(mark_begin)] # fmt: skip

# If the return code contains #CLIXML (like a progress bar) remove it
clixml_filter = re.compile(r"#<\sCLIXML\s<Objs.*</Objs>")
stdout = clixml_filter.sub("", stdout)
# clixml_filter = re.compile(r"#<\sCLIXML\s<Objs.*</Objs>")
# stdout = clixml_filter.sub("", stdout)

# If it looks like JSON remove any newlines
if stdout.startswith("{"):
Expand Down

0 comments on commit ce873d3

Please sign in to comment.