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
However, during startup an anonymous login is mandatory. In the as is this results in a condition on the query
Copy
'no_tenant' = 'no_tenant'
after applying the fix we get
Copy
t1.TENANT_ID = 'no_tenant'
As the anonymous user has a null value in the tenant_id the condition returns false. no anymous user is found and the server fails to start.
The text was updated successfully, but these errors were encountered:
I made a ticket for this in Cuba forum before https://www.cuba-platform.com/discuss/t/bug-in-multitenancy-queries-tenant-id-no-tenant-is-applied-incorrectly/14547
should be replaced by
However, during startup an anonymous login is mandatory. In the as is this results in a condition on the query
Copy
'no_tenant' = 'no_tenant'
after applying the fix we get
Copy
t1.TENANT_ID = 'no_tenant'
As the anonymous user has a null value in the tenant_id the condition returns false. no anymous user is found and the server fails to start.
The text was updated successfully, but these errors were encountered: