aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 0 insertions, 11 deletions
diff --git a/README.md b/README.md
index 75ff79a..15c9002 100644
--- a/README.md
+++ b/README.md
@@ -119,17 +119,6 @@ class Customizer(CustomizerBase):
service_url = super().get_service_url(audit, service_name, service)
audit.info("TODO: customization for service_url on {0}".format(service_name))
return service_url
-
- def get_deploy_handler_kwargs(self, audit):
- """
- returns the optional dict-kwargs for requests.post to deploy-handler
-
- this is just a sample code - replace it with the real customization
- """
- kwargs = {"verify": "/usr/local/share/ca-certificates/aafcacert.crt"}
- audit.info("kwargs for requests.post to deploy-handler: {0}".format(json.dumps(kwargs)))
- return kwargs
-
```
----------