Merge pull request #17763 from ktoso/wip-17690-validations-in-root-actor-path-ktoso

=act #17690 add additional validation for name param in RootActorPath
This commit is contained in:
Konrad Malawski 2015-06-22 17:16:53 +02:00
commit 2c606383e5
3 changed files with 24 additions and 0 deletions

View file

@ -30,6 +30,16 @@ in practice. No changes were needed to the Akka source code for this update. Use
depend on 3.8.0.Final that break with 3.10.3.Final should be able to manually downgrade the dependency
to 3.8.0.Final and Akka will still work with that version.
Added parameter validation to RootActorPath
===========================================
Previously ``akka.actor.RootActorPath`` allowed passing in arbitrary strings into its name parameter,
which is meant to be the *name* of the root Actor. Subsequently, if constructed with an invalid name
such as a full path for example (``/user/Full/Path``) some features using this path may transparently fail -
such as using ``actorSelection`` on such invalid path.
In Akka 2.4.x the ``RootActorPath`` validates the input and may throw an ``IllegalArgumentException`` if
the passed in name string is illegal (contains ``/`` elsewhere than in the begining of the string or contains ``#``).
Advanced Notice: TypedActors will go away
=========================================