-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support to compare Relay changes (#61)
- Loading branch information
Showing
7 changed files
with
330 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"domain": { | ||
"group": [ | ||
{ | ||
"name": "Release 1", | ||
"description": "Showcase configuration", | ||
"activated": true, | ||
"config": [ | ||
{ | ||
"key": "MY_SWITCHER_1", | ||
"description": "My first switcher", | ||
"activated": true, | ||
"strategies": [ | ||
{ | ||
"strategy": "VALUE_VALIDATION", | ||
"activated": false, | ||
"operation": "EXIST", | ||
"values": [ | ||
"user_1" | ||
] | ||
} | ||
], | ||
"components": [ | ||
"switcher-playground" | ||
] | ||
}, | ||
{ | ||
"key": "MY_SWITCHER_2", | ||
"description": "", | ||
"activated": false, | ||
"strategies": [], | ||
"components": [ | ||
"switcher-playground" | ||
] | ||
}, | ||
{ | ||
"key": "MY_SWITCHER_3", | ||
"description": "", | ||
"activated": true, | ||
"strategies": [], | ||
"components": [ | ||
"benchmark" | ||
] | ||
}, | ||
{ | ||
"key": "MY_SWITCHER_4", | ||
"description": "", | ||
"activated": true, | ||
"strategies": [], | ||
"relay": { | ||
"type": "VALIDATION", | ||
"method": "GET", | ||
"endpoint": "https://localhost:3000/v1/relay", | ||
"description": "Changed Relay to localhost", | ||
"activated": false | ||
}, | ||
"components": [ | ||
"benchmark" | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"domain": { | ||
"group": [ | ||
{ | ||
"name": "Release 1", | ||
"description": "Showcase configuration", | ||
"activated": true, | ||
"config": [ | ||
{ | ||
"key": "MY_SWITCHER_1", | ||
"description": "My first switcher", | ||
"activated": true, | ||
"strategies": [ | ||
{ | ||
"strategy": "VALUE_VALIDATION", | ||
"activated": false, | ||
"operation": "EXIST", | ||
"values": [ | ||
"user_1" | ||
] | ||
} | ||
], | ||
"components": [ | ||
"switcher-playground" | ||
] | ||
}, | ||
{ | ||
"key": "MY_SWITCHER_2", | ||
"description": "", | ||
"activated": false, | ||
"strategies": [], | ||
"components": [ | ||
"switcher-playground" | ||
] | ||
}, | ||
{ | ||
"key": "MY_SWITCHER_3", | ||
"description": "", | ||
"activated": true, | ||
"strategies": [], | ||
"components": [ | ||
"benchmark" | ||
] | ||
}, | ||
{ | ||
"key": "MY_SWITCHER_4", | ||
"description": "", | ||
"activated": true, | ||
"strategies": [], | ||
"relay": { | ||
"type": "NOTIFICATION", | ||
"method": "POST", | ||
"endpoint": "https://localhost:3000/relay", | ||
"description": "Relay to localhost", | ||
"activated": true | ||
}, | ||
"components": [ | ||
"benchmark" | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} |
Oops, something went wrong.