From e259884bc6aa5cee5458b250bf8e3cdd1e5f71b8 Mon Sep 17 00:00:00 2001
From: Neil Williams <neil@reddit.com>
Date: Fri, 24 Jan 2020 14:10:32 -0800
Subject: [PATCH] Fix example.ini port number for OneVM

---
 example.ini        | 2 +-
 tests/fire-webhook | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/example.ini b/example.ini
index 6c43076..74aa2f5 100644
--- a/example.ini
+++ b/example.ini
@@ -13,7 +13,7 @@
 [harold:plugin:http]
 ; what endpoint http server should listen on for incoming connections
 ; see: https://twistedmatrix.com/documents/14.0.0/core/howto/endpoints.html#servers
-endpoint = tcp:port=8008
+endpoint = tcp:port=8011
 ; a secret token used to authenticate requests made to harold
 hmac_secret = asupersecrettoken
 ; how the outside world can find harold
diff --git a/tests/fire-webhook b/tests/fire-webhook
index 145dea8..f186964 100755
--- a/tests/fire-webhook
+++ b/tests/fire-webhook
@@ -20,7 +20,7 @@ def main():
     args = parser.parse_args()
 
     headers, payload = load_request_snapshot(args.file)
-    response = requests.post("http://localhost:8008/harold/github", headers=headers, data=payload)
+    response = requests.post("http://localhost:8011/harold/github", headers=headers, data=payload)
     response.raise_for_status()
     print(response.text)