From cab865c913a3579ffbc82372cc6d607a79bc9c8a Mon Sep 17 00:00:00 2001 From: Tiago D J Date: Thu, 25 Mar 2021 12:09:44 -0300 Subject: [PATCH] Quick fix to avoid empty slides This PR reduces the impact of #8618 by increasing hardcoded timeout from 7s to 60s A subsequent PR is going to be sent by @gustavotrott to: -> Make this timeout configurable; -> Add a log telling that timeout happened --- .../bigbluebutton/presentation/imp/SvgImageCreatorImp.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bbb-common-web/src/main/java/org/bigbluebutton/presentation/imp/SvgImageCreatorImp.java b/bbb-common-web/src/main/java/org/bigbluebutton/presentation/imp/SvgImageCreatorImp.java index b52a7c00f4..1793f3e396 100755 --- a/bbb-common-web/src/main/java/org/bigbluebutton/presentation/imp/SvgImageCreatorImp.java +++ b/bbb-common-web/src/main/java/org/bigbluebutton/presentation/imp/SvgImageCreatorImp.java @@ -29,8 +29,8 @@ public class SvgImageCreatorImp implements SvgImageCreator { private SwfSlidesGenerationProgressNotifier notifier; private long imageTagThreshold; private long pathsThreshold; - private String convTimeout = "7s"; - private int WAIT_FOR_SEC = 7; + private String convTimeout = "60s"; + private int WAIT_FOR_SEC = 60; private String BLANK_SVG; @Override