DisableValidation validating the config. This does not affect schema validation!
()
| 72 | // |
| 73 | // This does not affect schema validation! |
| 74 | func DisableValidation() OptionsModifier { |
| 75 | return func(o *options) { |
| 76 | o.noValidate = true |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | // DisablePreloading will not preload the config. |
| 81 | func DisablePreloading() OptionsModifier { |
no outgoing calls