stela ops usage fixes roles propagation and timoeut, one account to support multi tenants, migrations consolidation, search to support documentation, doctor and open api vector db search
This commit is contained in:
@@ -10,9 +10,10 @@ public sealed class RequestRoutingMiddleware
|
||||
public RequestRoutingMiddleware(
|
||||
RequestDelegate next,
|
||||
ILogger<RequestRoutingMiddleware> logger,
|
||||
ILogger<TransportDispatchMiddleware> dispatchLogger)
|
||||
ILogger<TransportDispatchMiddleware> dispatchLogger,
|
||||
IHostEnvironment environment)
|
||||
{
|
||||
_dispatchMiddleware = new TransportDispatchMiddleware(next, dispatchLogger);
|
||||
_dispatchMiddleware = new TransportDispatchMiddleware(next, dispatchLogger, environment);
|
||||
}
|
||||
|
||||
public Task InvokeAsync(HttpContext context, ITransportClient transportClient, IGlobalRoutingState routingState)
|
||||
|
||||
Reference in New Issue
Block a user