mumubin

Results 6 issues of mumubin

@SneakyThrows @Test void testRenderUndefined() { Handlebars handlebars = new Handlebars(); com.github.jknack.handlebars.Template template = handlebars.compileInline("Hi {{name}}, {{raw}}!"); Map parameterMap = new HashMap(); parameterMap.put("name", "moto"); String templateString = template.apply(parameterMap); assertEquals(templateString, "Hi moto,...

question

I have an object like this, I want to search node no matter which layer it is ```go type Node struct { Name string `yaml:"name"` Children []*Node `yaml:"children"` } ```...

怎么调试和解决?

I have a nginx canary deployment scenario where I hope to support canary weight and header at the same time . However, after testing, the weight of the canary ingress...

## Describe the feature As far as I know, [nginx itself also supports session sticky/affinity](https://docs.mirantis.com/mke/3.6/ops/deploy-apps-k8s/nginx-ingress/configure-sticky-session.html#:~:text=Sticky%20sessions%20enable%20users%20who,requests%20to%20the%20same%20Pod.&text=Specify%20the%20name%20of%20the%20required%20cookie%20(default%3A%20INGRESSCOOKIE%20).), but in flagger's documentation, session affinity only applies to istio situations . Is it assessed...

I am new to serverless workflow, I want to test it's example in synapse. Here is my test example workflow. ```json { "id": "greeting", "name": "Greeting Workflow", "description": "Greet Someone",...