akkadotnet / Akka.Hosting

Akka.Hosting - standardized Akka.NET hosting without any HOCON configuration. Ties into Microsoft.Extensions.Configuration, Logging, Hosting, and DependencyInjection.
Apache License 2.0
52 stars 13 forks source link

Conflict between Akka.Persistence.Sql.Hosting and Akka.Persistence.Hosting `SqlJournalOptions` and `SqlSnapshotOptions` #466

Open Aaronontheweb opened 3 weeks ago

Aaronontheweb commented 3 weeks ago

Version Information Version of Akka.NET? v1.5.24 Which Akka.NET Modules? Akka.Persistence.Sql.Hosting and Akka.Persistence.Hosting

Describe the bug

Both packages have an identically named SqlJournalOptions and SqlSnapShotOptions type - it's not clear who should use what and results in configuration errors.

Expected behavior

SqlJournalOptions should belong to the real plugin, not the shared library.

Actual behavior

We should make a breaking change and delete these from the shared library - push them all into the individual unique libraries.