Skip to content
This repository has been archived by the owner on Dec 16, 2021. It is now read-only.

Commit

Permalink
Fix example.ini port number for OneVM
Browse files Browse the repository at this point in the history
  • Loading branch information
spladug committed Jan 24, 2020
1 parent 174e354 commit e259884
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion example.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/fire-webhook
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit e259884

Please sign in to comment.