hatzhang
hatzhang
I followed the [manual](https://docs.fluxcd.io/projects/helm-operator/en/stable/helmrelease-guide/chart-sources/#authentication-and-certificates) about mount repositories and cert file into helm operator pod, but it does not work. Here is the pod: ``` bash $ k describe -n flux...
The following test case will pass: ``` [Fact] public void PathStringTest() { var first = new PathString("/m-module"); var second = new PathString("/{document}/asynciapi/asyncapi.json"); var final = first.Add(second); final.Value.Should().Be("/m-module/{document}/asynciapi/asyncapi.json"); final.ToString().Should().Be("/m-module/%7Bdocument%7D/asynciapi/asyncapi.json"); } ```...
When trying to mage application, i got the following path separator related issue. I believe the right path should be ```'/Temp/2.0.0.0/'```, instead of ```'/Temp/2.0.0.0\'```. > root@4d4e7e505f74:/Temp# ls 2.0.0.0 root@4d4e7e505f74:/Temp# dotnet...
如下, linq语句的group by中包含Year/Month时会抛例外,BegDate在c#中的类型为Datetime, 在数据库中为 timestamp without time zone. ``` group q by new { q.LineSeq, YearMonth = new { Year = q.BegDate.Year, Month = q.BegDate.Month } }; ``` 例外: ```log...