Skip to content

Commit

Permalink
Fixed build for client. Fixed typo in server PlayEngine.
Browse files Browse the repository at this point in the history
git-svn-id: http://red5.googlecode.com/svn/java/server/trunk@4387 1b6495e4-3631-0410-8e05-8f51eee8b9cc
  • Loading branch information
mondain committed Jul 1, 2012
1 parent d468486 commit 0fef400
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/red5/server/api/Red5.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
*
* @author The Red5 Project (red5@osflash.org)
* @author Luke Hubbard (luke@codegent.com)
* @author Paul Gregoire (mondain@gmail.com)
* @author Paul Gregoire (mondain@gmail.com)
*/
public final class Red5 {

Expand Down
4 changes: 4 additions & 0 deletions src/org/red5/server/stream/PlayEngine.java
Original file line number Diff line number Diff line change
Expand Up @@ -1764,6 +1764,10 @@ public void run() {
while (getLastMessageTimestamp() > 0 && !isClientBufferEmpty()) {
try {
Thread.sleep(10L);
} catch (InterruptedException e) {
if (log.isDebugEnabled()) {
log.warn("Exception during sleep in runDeferredStop", e);
}
}
}
log.trace("Buffer is empty, stop will proceed");
Expand Down

0 comments on commit 0fef400

Please sign in to comment.