Skip to content

Commit

Permalink
Eliminate delay between binding and checking for logs
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewor14 committed Apr 18, 2014
1 parent 7863ecc commit e8d1fbc
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,11 @@ class HistoryServer(
def initialize() {
attachPage(new HistoryPage(this))
attachHandler(createStaticHandler(STATIC_RESOURCE_DIR, "/static"))
}

/** Bind to the HTTP server behind this web interface. */
override def bind() {
super.bind()
logCheckingThread.start()
}

Expand Down

0 comments on commit e8d1fbc

Please sign in to comment.