Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rorschach.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChris Rebert <code@rebertia.com>2014-10-11 00:24:43 +0400
committerChris Rebert <code@rebertia.com>2014-10-11 00:24:43 +0400
commit27aa4bfda4e6e59a70ee6f8a319dd6350179b9b6 (patch)
treeb1590ba1cd9b46db479cc16bc93c1597f8cbe42a /src
parente1d729663030f336342e515135fee45de15e86ba (diff)
Boot now needs access to Settings
Diffstat (limited to 'src')
-rw-r--r--src/main/scala/com/getbootstrap/rorschach/server/Boot.scala1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/scala/com/getbootstrap/rorschach/server/Boot.scala b/src/main/scala/com/getbootstrap/rorschach/server/Boot.scala
index a1ccbeb..3668637 100644
--- a/src/main/scala/com/getbootstrap/rorschach/server/Boot.scala
+++ b/src/main/scala/com/getbootstrap/rorschach/server/Boot.scala
@@ -32,6 +32,7 @@ object Boot extends App {
def run(port: Option[Int]) {
implicit val system = ActorSystem("on-spray-can")
+ val settings = Settings(system)
// import actorSystem.dispatcher
val commenter = system.actorOf(SmallestMailboxPool(3).props(Props(classOf[GitHubPullRequestCommenter])), "gh-pr-commenter")