Yuyou Chow

Results 13 comments of Yuyou Chow

I wanted it to be updated when I restarted the app, why should I set an duration to stop my way? So I think that it should always checking for...

Yes, I see. But I mean, it should check for updates at that moment when the app is starting. For now,the update duration may make it stop. Some steps: 1....

Yes, I want this feature. Thank you.

@ITSecMedia Thank you for your solution. but `robocopy` return 1 when files were copied successfully, and `os/exec` throw an error which was `exit status 1` . .

@brigadier setting `sources` in project settings

[intellij-erlang-0.11.1150.zip](https://github.com/ignatov/intellij-erlang/files/9335203/intellij-erlang-0.11.1150.zip) @artman41 have a try?

[intellij-erlang-0.11.1150.zip](https://github.com/ignatov/intellij-erlang/files/9390836/intellij-erlang-0.11.1150.zip) recompiled for idea-2022.2.1

SNI配置TLS给TCP路由的可以给个例子吗?尝试很多种配置方式都不行 ``` apiVersion: traefik.containo.us/v1alpha1 kind: IngressRouteTCP metadata: name: postgres spec: tls: secretName: postgres-xxxxx-tls entryPoints: - tcp routes: - match: HostSNI(`postgres.xxx.com`) services: - name: postgres port: 5432 ``` 我大概是这样配置的, 证书是通过cert-manager生成到secret的, 但是这样配置就会直接路由到http那边去,不知道是哪里有问题

> @cnych > @zyuyou 在 tls 里面加上 `passthrough=true` 试看看 ***我试过了***, passthrough是当请求转给backend的时候解不解密, 设置为true的话是不解密, 但是我的backend服务postgres是不需要tls加密的数据, 所以tls只是traefik路由使用的, 我是这么理解的

> @cnych > @zyuyou 嗯,我去测试下~ 您好, 测试能实现TCP路由吗