feat: 获取app step 5

This commit is contained in:
zengxiaobo 2024-07-04 19:00:33 +08:00
parent 105481f94b
commit 077bf1cad4

View File

@ -32,7 +32,7 @@ public class AxContextInterceptor implements HandlerInterceptor {
@Builder
public AxContextInterceptor(AppRuntime appRuntime, String debugHost) {
this.appRuntime = appRuntime;
this.supplierUrl = Optional.ofNullable(Strings.emptyToNull(debugHost))
this.supplierUrl = Optional.ofNullable(Strings.emptyToNull(debugHost)).map(e -> e + "/pudge")
.orElse("http://pudge:10099") + "/webApi/oauth/apisix/authentication";
}