Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
fairblue
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hosting
chat
fairblue
Commits
82371a41
Commit
82371a41
authored
7 years ago
by
Richard Alam
Browse files
Options
Downloads
Patches
Plain Diff
- try to start system
parent
6b14d318
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bigbluebutton-apps/src/main/java/org/bigbluebutton/red5/BigBlueButtonApplication.java
+1
-1
1 addition, 1 deletion
...java/org/bigbluebutton/red5/BigBlueButtonApplication.java
bigbluebutton-web/grails-app/conf/bbb-web.conf
+43
-0
43 additions, 0 deletions
bigbluebutton-web/grails-app/conf/bbb-web.conf
with
44 additions
and
1 deletion
bigbluebutton-apps/src/main/java/org/bigbluebutton/red5/BigBlueButtonApplication.java
+
1
−
1
View file @
82371a41
...
...
@@ -315,7 +315,7 @@ public class BigBlueButtonApplication extends MultiThreadedApplicationAdapter {
public
void
onMessageFromClient
(
String
json
)
{
ConnInfo
connInfo
=
getConnInfo
();
clientInGW
.
handleM
essage
FromClient
(
connInfo
,
json
);
clientInGW
.
handleM
sg
FromClient
(
connInfo
,
json
);
}
private
ConnInfo
getConnInfo
()
{
...
...
This diff is collapsed.
Click to expand it.
bigbluebutton-web/grails-app/conf/bbb-web.conf
0 → 100755
+
43
−
0
View file @
82371a41
akka
{
actor
{
debug
{
# enable DEBUG logging of all AutoReceiveMessages (Kill, PoisonPill et.c.)
autoreceive
=
on
# enable DEBUG logging of actor lifecycle changes
lifecycle
=
on
}
}
loggers
= [
"akka.event.slf4j.Slf4jLogger"
]
loglevel
=
"DEBUG"
rediscala
-
publish
-
worker
-
dispatcher
{
mailbox
-
type
=
"akka.dispatch.SingleConsumerOnlyUnboundedMailbox"
# Throughput defines the maximum number of messages to be
# processed per actor before the thread jumps to the next actor.
# Set to 1 for as fair as possible.
throughput
=
512
}
rediscala
-
subscriber
-
worker
-
dispatcher
{
mailbox
-
type
=
"akka.dispatch.SingleConsumerOnlyUnboundedMailbox"
# Throughput defines the maximum number of messages to be
# processed per actor before the thread jumps to the next actor.
# Set to 1 for as fair as possible.
throughput
=
512
}
}
redis
{
host
=
"127.0.0.1"
port
=
6379
password
=
""
# recording keys should expire in 14 days
keyExpiry
=
1209600
}
eventBus
{
meetingManagerChannel
=
"MeetingManagerChannel"
outMessageChannel
=
"OutgoingMessageChannel"
incomingJsonMsgChannel
=
"IncomingJsonMsgChannel"
outBbbMsgMsgChannel
=
"OutBbbMsgChannel"
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment