Describe the bug
Wolverine configured with Marten with an ancillary store seems to be polling a non-existing table wolverine_incoming_envelopes in the ancillary schema.
The events are being handled without issue but I'm getting this error in the logs every couple seconds.
What's not (yet) supported
Controlling which schema the Wolverine envelope tables are placed in. Today they will be placed in the default schema for the ancillary store
They way I initially understood it was that envelope queries were going to be made against the default schema (the default store), even when there are ancillary stores defined, but I think what it meant is that they are made against ancillary store schema (and not for example Events schema). That's fine, but that table is not created.
Describe the bug Wolverine configured with Marten with an ancillary store seems to be polling a non-existing table
wolverine_incoming_envelopes
in the ancillary schema. The events are being handled without issue but I'm getting this error in the logs every couple seconds.According to documentation: https://wolverinefx.io/guide/durability/marten/ancillary-stores
They way I initially understood it was that envelope queries were going to be made against the default schema (the default store), even when there are ancillary stores defined, but I think what it meant is that they are made against ancillary store schema (and not for example Events schema). That's fine, but that table is not created.
To Reproduce
Events and Endpoints configuration (less relevant)
```csharp WebApplication app = builder.Build(); app.MapGet("/counter/{id}", async ([FromRoute] string id, ICounterStore store) => { IDocumentSession session = store.LightweightSession(); Counter? counter = session.Events.AggregateStreamExpected behavior No errors.
StackTrace
Additional context By changing the schema to only affect events, the errors are gone: