Replies: 1 comment
-
Did you found anything? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a weird situation with our application. We have a
Mailable
that implementsShouldQueue
. We send the e-mail through a specific tenant as follows below:queues_are_tenant_aware_by_default
is set to true in our installation. But still, when the email goes out, it has no tenant. Even when I explicitly make it inheritTenantAware
, it doesn't work.We had something similar in the past. Scheduled jobs that do not require a tenant would not work even when they inherited
NotTenantAware
. I had to add them to thenot_tenant_aware_jobs
array in the config. That worked.When I add the email to the
tenant_aware_jobs
, it gets the correct tenant, but that will get tedious over time. I'll do some debugging when I'm at work next week, but perhaps it's something simple I've missed? We're on 2.3.5, but the release notes didn't mention anything that might cause this.Beta Was this translation helpful? Give feedback.
All reactions