Skip to content
Snippets Groups Projects
Commit 76dab31f authored by Richard Alam's avatar Richard Alam
Browse files

- don't raise an exception when executing external command and some text gets...

 - don't raise an exception when executing external command and some text gets printed on stderr. Just log the error and move on.
parent 18fba79c
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@ module BigBlueButton
errors = stderr.readlines
unless errors.empty?
BigBlueButton.logger.error( "Error: stderr: #{errors}")
raise errors.to_s
# raise errors.to_s
end
end
BigBlueButton.logger.info("Success ?: #{status.success?}")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment