This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class RouterActor extends Actor with ActorLogging { | |
// Our worker Actor handles the work of the request. | |
var router = Router(RoundRobinRoutingLogic(), Vector.empty) | |
def receive = { | |
// router related handlers | |
case AddRoutee1(actor: ActorRef) => | |
val a: ActorRefRoutee = ActorRefRoutee(actor) | |
router = router.addRoutee(a) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[root@broker ~]# oo-diagnostics | |
No request sent, we did not discover any nodes.FAIL: test_node_profiles_districts_from_broker | |
No node hosts found. Please install some, | |
or ensure the existing ones respond to 'oo-mco ping'. | |
OpenShift cannot host gears without at least one node host responding. | |
FAIL: run_script | |
oo-accept-broker had errors: | |
--BEGIN OUTPUT-- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const FVector Impulse = FVector(0.f, 0.f, JumpImpulse); | |
Ball->AddImpulse(Impulse); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package service | |
import play.api.{Logger, Application} | |
import securesocial.core._ | |
import securesocial.core.providers.Token | |
import models._ | |
import models.UserIdentity | |
import models.UserToken | |
import scala.Some |
NewerOlder