Hello guys!
I’m using the spring-web alpakka module and would like to be able to set my own actor system name. I checked the source code and saw that it was defined when it was created:
system = ActorSystem.create (“SpringWebAkkaStreamsSystem”);
But SpringWebAkkaStreamsSystem is a terrible name for my logs.
I think it would be possible to integrate this module with the spring boot configuration system so that you can define the actor system name with something similar to an entry in the application.properties file similar to this:
akka.stream.alpakka.spring.web.actorySystemName: my-actor-system-name
I can contribute a pull request if you think this functionality makes any sense at all.
Regards,
Adriano Santos