Ou
Ou
> The json library we used (lua-cjson) will escape `/` to `\/`, as this library chooses to be compatible with the behavior of PHP. Is there any way to solve...
> 我们自己根据filelogger插件做了一个根据域名拆分日志的插件,也遇到你这个问题了,我们是重新引用了openresty的json模块 openresty的json模块可以专门有一个参数可以关闭 '/' 前的''。 > > ``` > local json = require("cjson") > json.encode_escape_forward_slash(false) > ``` > > apisix的json模块是自己稍微做了下封装,我测试过直接在core.json里开启这个参数也是能生效的,但是相当于全局使用的json都会被修改所以不太敢这么做。所以你们如果只是某个插件想去掉这个转义符,可以稍微修改下这个插件里的json模块引用。 好的,我现在尝试一下,谢谢
@Lewisyixin Thank you. After the configuration, the \ is not available
> There may be such a problem. Let me tell you why. If your cluster has 2 nodes, A and B. When using layer2 mode, we will use round robin...
看到问题了,1.2.0没有这个功能
> @ouweijun1 There is no available tool directly in the community. But more users need it, can you contribute to it? You only need to write some simple code. Read...
> 目前还没有工具,建议先尽快起一套新的用 MongoDB,避免规模上来以后导致风险。 是的,目是是想新一套新的,但是因为旧的集群服务较多,所以想看看有没有办法进行迁移,如果手动一个一个重建的话有点麻烦
> It could be similar to the logic here: https://github.com/kubevela/kubevela/blob/master/pkg/apiserver/event/sync/cr2ux.go#L76 好的,谢谢,我试试
> > It could be similar to the logic here: https://github.com/kubevela/kubevela/blob/master/pkg/apiserver/event/sync/cr2ux.go#L76 > > @ouweijun1 Oh no, it's not that complicated. You only need to implement a CLI command. Refer to...