Skip to content
This repository was archived by the owner on Jan 22, 2021. It is now read-only.

Commit 8b515f9

Browse files
committed
fixed underscores
1 parent 859d569 commit 8b515f9

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

processor/proc.go

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ var log = logger.GetLogger("processor")
2323

2424
func set(key, val, def string, t ValueType) (string, error) {
2525
pth := key[len(string(t)):]
26+
pth = strings.Replace(pth, "-", "_", -1)
2627

2728
switch t {
2829
case ValueSetStringKey:

processor/proc_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ var js = `
7171

7272
func TestProc(t *testing.T) {
7373
testAnnotations := map[string]string{
74-
"service.tyk.io/bool/use_keyless": "false",
75-
"service.tyk.io/string/proxy.target_url": "http://foo.bar/bazington",
76-
"service.tyk.io/num/cache_options.cache_timeout": "20",
77-
"service.tyk.io/object/version_data.versions.Default.extended_paths": `{"hard_timeouts":[{"path":"{all}","method":"GET","timeout":60,"fromDashboard":true}]}`,
74+
"service.tyk.io/bool/use-keyless": "false",
75+
"service.tyk.io/string/proxy.target-url": "http://foo.bar/bazington",
76+
"service.tyk.io/num/cache_options.cache-timeout": "20",
77+
"service.tyk.io/object/version_data.versions.Default.extended-paths": `{"hard_timeouts":[{"path":"{all}","method":"GET","timeout":60,"fromDashboard":true}]}`,
7878
}
7979

8080
def, err := Process(testAnnotations, js)

0 commit comments

Comments
 (0)