diff --git a/mod/core/web/bigbluebutton.properties b/mod/core/web/bigbluebutton.properties index 0631db4..d7068a0 100644 --- a/mod/core/web/bigbluebutton.properties +++ b/mod/core/web/bigbluebutton.properties @@ -219,6 +219,16 @@ allowModsToUnmuteUsers=false # Saves meeting events even if the meeting is not recorded keepEvents=false +# Timeout (millis) to remove a joined user after her/his left event without a rejoin +# e.g. regular user left event +# Default 60s +usersTimeout=60000 + +# Timeout (millis) to remove users that called the enter API but did not join +# e.g. user's client hanged between the enter call and join event +# Default 45s +enteredUsersTimeout=45000 + #---------------------------------------------------- # This URL is where the BBB client is accessible. When a user sucessfully # enters a name and password, she is redirected here to load the client. diff --git a/mod/html5/Dockerfile b/mod/html5/Dockerfile index bf2ef87..b582f77 100644 --- a/mod/html5/Dockerfile +++ b/mod/html5/Dockerfile @@ -14,7 +14,7 @@ USER meteor ENV METEOR_VERSION 1.8.1 RUN curl -sL https://install.meteor.com?release=$METEOR_VERSION | sed s/--progress-bar/-sL/g | /bin/sh -ENV TAG v2.2.26 +ENV TAG v2.2.27 RUN cd ~ \ && svn checkout https://github.com/bigbluebutton/bigbluebutton/tags/$TAG/bigbluebutton-html5 \ && mv ~/bigbluebutton-html5 ~/source \ @@ -51,4 +51,4 @@ USER meteor ENTRYPOINT ["/entrypoint.sh"] # lets set the tag again, so that it is include in the image for later version retrieval -ENV TAG v2.2.24 +ENV TAG v2.2.27 diff --git a/mod/recordings/Dockerfile b/mod/recordings/Dockerfile index 3eee13a..9c04fce 100644 --- a/mod/recordings/Dockerfile +++ b/mod/recordings/Dockerfile @@ -40,7 +40,7 @@ RUN mkdir -p \ /var/log/bigbluebutton \ /var/log/bigbluebutton/presentation -ENV TAG v2.2.26 +ENV TAG v2.2.27 # add bbb-record-core (lib, scripts and Gemfile) RUN cd /usr/local/bigbluebutton/core \