gyy-bisontech

Results 3 issues of gyy-bisontech

DeGraphQL 配置如下 ``` endpoint: "/graphql" namespace: "dev" serviceName: "graphqlServer" servicePort: 8000 serviceSource: "k8s" timeout: 5000 gql: | query ($id:GraphQLBigInt!){ test(filter: { id: { _eq: "$id" } }) { id }...

我写了一个插件, 在解析请求头的时候返回ActionPause, 这种情况下http请求应该会卡住才对, 但是我直接获取到了后端服务的返回 插件代码: ```golang package main import ( "github.com/alibaba/higress/plugins/wasm-go/pkg/wrapper" "github.com/higress-group/proxy-wasm-go-sdk/proxywasm/types" "github.com/tidwall/gjson" ) func main() { wrapper.SetCtx( "checker", // 配置插件名称 wrapper.ParseConfigBy(parseConfig), wrapper.ProcessRequestHeadersBy(onHttpRequestHeaders), ) } type Config struct { }...

我在同一个higress中添加了两个相同的插件, 两个插件配置链接不同的redis db, 理论上应该两个插件去不同的db中查询信息, 但是实测下来两个插件使用的是同一个 db 查询信息

help wanted
level/challenge