You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you try to disable sagas and subscriptions, are left with just timeouts and provide a connectionstring for just timeouts, the persister complains about saga connectionstring not being found.
Detailed description
The NHibernatePersistence feature tries to enable timeouts, sagas, subscriptions, etc. by default. However line 21 enables NHibernateStorageSession and this is looking for a specific saga connectionstring in line 35.
When just providing the connectionstring for the timeout, after disabling everything else, it complains about a missing saga connectionstring.
Easiest solution is probably to make sure NHibernateStorageSession doesn't require the saga connectionstring. Maybe just have "Saga" empty in line 35. That would also require to fix the error message, since it might not have a suffix at all.
The text was updated successfully, but these errors were encountered:
Together @HEskandari , I investigated an issue related to this StackOverflow issue and came to the following conclusion:
Issue description
When you try to disable sagas and subscriptions, are left with just timeouts and provide a connectionstring for just timeouts, the persister complains about saga connectionstring not being found.
Detailed description
The NHibernatePersistence feature tries to enable timeouts, sagas, subscriptions, etc. by default. However line 21 enables
NHibernateStorageSession
and this is looking for a specific saga connectionstring in line 35.When just providing the connectionstring for the timeout, after disabling everything else, it complains about a missing saga connectionstring.
and configuration
Workaround
Disabling the feature
NHibernateStorageSession
like thisSuggested solution
Easiest solution is probably to make sure
NHibernateStorageSession
doesn't require the saga connectionstring. Maybe just have "Saga" empty in line 35. That would also require to fix the error message, since it might not have a suffix at all.The text was updated successfully, but these errors were encountered: