Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion samples/http-image-cloudevents/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def send_structured_cloud_event(url: str):
if __name__ == "__main__":
# Run client.py via: 'python3 client.py http://localhost:3000/'
if len(sys.argv) < 2:
sys.exit("Usage: python with_requests.py <CloudEvents controller URL>")
sys.exit("Usage: python client.py <CloudEvents controller URL>")

url = sys.argv[1]
send_binary_cloud_event(url)
Expand Down
2 changes: 1 addition & 1 deletion samples/http-json-cloudevents/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def send_structured_cloud_event(url):
# expects a url from command line.
# e.g. python3 client.py http://localhost:3000/
if len(sys.argv) < 2:
sys.exit("Usage: python with_requests.py <CloudEvents controller URL>")
sys.exit("Usage: python client.py <CloudEvents controller URL>")

url = sys.argv[1]
send_binary_cloud_event(url)
Expand Down