diff options
author | Aaron Tan <jangsutsr@gmail.com> | 2017-07-12 19:30:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-12 19:30:44 +0200 |
commit | c6ed70dd9d0fb51327a959aa08970680d4c16222 (patch) | |
tree | a10e186bcefce1251d72533fbdc61f0a2a4c3cf9 /docs | |
parent | Merge pull request #7021 from AlanCoding/alan_source_project_fix (diff) | |
parent | Strengthen attribute check for Tower configuration validations (diff) | |
download | awx-c6ed70dd9d0fb51327a959aa08970680d4c16222.tar.xz awx-c6ed70dd9d0fb51327a959aa08970680d4c16222.zip |
Merge pull request #6928 from jangsutsr/6904_strengthen_attribute_check_for_tower_conf_validators
Strengthen attribute check for Tower configuration validations
Diffstat (limited to 'docs')
-rw-r--r-- | docs/tower_configuration.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/tower_configuration.md b/docs/tower_configuration.md index 268527a9aa..ca5fdfee8c 100644 --- a/docs/tower_configuration.md +++ b/docs/tower_configuration.md @@ -108,3 +108,5 @@ register_validate("category_a", validate_a) register_validate("category_b", validate_b) ... ``` + +It should be noted that each validation function will be invoked in two places: when updating the category it's responsible for and when updating the general category `all`. Always keep this fact in mind and test both situations when developing new validation functions. |