File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
src/main/java/org/red5/server/scope Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 33 <parent >
44 <groupId >org.red5</groupId >
55 <artifactId >red5-parent</artifactId >
6- <version >1.0.11 </version >
6+ <version >1.0.12 </version >
77 </parent >
88 <modelVersion >4.0.0</modelVersion >
99 <artifactId >red5-server-common</artifactId >
Original file line number Diff line number Diff line change @@ -620,19 +620,18 @@ public IScopeHandler getHandler() {
620620 }
621621
622622 /** {@inheritDoc} */
623- @ Deprecated
624623 public int getMaxClients () {
625- return connectionStats .getTotal ();
624+ return connectionStats .getMax ();
626625 }
627626
628627 /** {@inheritDoc} */
629628 public int getMaxConnections () {
630- return connectionStats .getTotal ();
629+ return connectionStats .getMax ();
631630 }
632631
633632 /** {@inheritDoc} */
634633 public int getMaxSubscopes () {
635- return subscopeStats .getTotal ();
634+ return subscopeStats .getMax ();
636635 }
637636
638637 /**
You can’t perform that action at this time.
0 commit comments