-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable Validation and Acceptance of New Parameter Configuration (#912)
* Init * Enable Validation and Acceptance of New Parameter Configuration Resolves #3584 - Allows for the supplying of configuration files for the daemon and api-config subcommands. - Properly validates the schema and contents of the supplied config file - Enables default parameters to be disabled, allows integration tests to run with all parameters enabled * Removed reflect deep equal for unit test * Changed expectError to a string from a boolean * Added checking of supplied file with enable all params
- Loading branch information
1 parent
4eaadeb
commit 5b88518
Showing
6 changed files
with
366 additions
and
31 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,6 @@ | ||
/sampleEndpoint: | ||
required: | ||
- p1 : enabled | ||
- p2 : disabled | ||
optional: | ||
- p3 : enabled |
Oops, something went wrong.