#1811

Remote configuration - error in documentation

    • Created on: Fri, Feb 10 (4 months ago)
    • Reported by: epirealer
    • Assigned to: -
    • Milestone: 2.0-RC1
    • Status: Duplicate
    • Priority: High (2)
    • Component: remoting
    • Estimate: None/Small/Medium/Large None
    Hi - in the Akka M4 release the documentation for 'remoting' states that in order to configure host and port the following configuration block should be used:

    akka {
      actor {
        provider = "akka.remote.RemoteActorRefProvider"
      }
      remote {
        transport = "akka.remote.netty.NettyRemoteTransport"
        server {
          hostname = "127.0.0.1"
          port = 2552
        }
     }
    }


    Using this will not work. The hostname/port properties are in the 'netty' namespace. The following will work though:

    akka {
      actor {
        provider = "akka.remote.RemoteActorRefProvider"
      }
      remote {
        transport = "akka.remote.netty.NettyRemoteTransport"
        netty {
          hostname = "127.0.0.1"
          port = 2552
        }
     }
    }
  • Followers
     
    Ico-users Jonas Bonér , Peter Vlugter , epirealer 
     
    Attachments
    No attachments
    Associations
     
    No associations
    Activity
     
    User picture

          on Feb 12, 2012 @ 11:37pm UTC * By viktorklang

    Status changed from New to Duplicate
    Fixed in master a while back
    User picture

          on Feb 12, 2012 @ 11:37pm UTC * By viktorklang

    Milestone set to 2.0-RC1
    Time Expenditure
    Loading