All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ght.controller.sal-akka-raft-example.7.0.10.source-code.application.conf Maven / Gradle / Ivy

There is a newer version: 10.0.2
Show newest version
akka {

    loglevel = "DEBUG"

    actor {
        # enable to test serialization only.
        # serialize-messages = on
    }
}

raft-test {
    akka {

        loglevel = "DEBUG"

        actor {
            # enable to test serialization only.
            # serialize-messages = on

            provider = "akka.remote.RemoteActorRefProvider"
        }

        remote {
            log-remote-lifecycle-events = off
            artery {
                enabled = on
                canonical.hostname = "127.0.0.1"
                canonical.port = 2550
            }
        }
    }
}

raft-test-listener {

  akka {
    loglevel = "DEBUG"

    actor {
        provider = "akka.remote.RemoteActorRefProvider"
    }

    remote {
        log-remote-lifecycle-events = off
        artery {
            enabled = on
            canonical.hostname = "127.0.0.1"
            canonical.port = 2554
        }
    }

    member-id = "member-1"
  }
}







© 2015 - 2024 Weber Informatics LLC | Privacy Policy