Skip to content

Commit

Permalink
utilities: fix dummy is-05 request
Browse files Browse the repository at this point in the history
The former uuid wasn't accepted by a receiver because it didn't match:
'^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}'
  • Loading branch information
pkeroulas committed Aug 18, 2022
1 parent 6057c0b commit c9c569b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utilities/is-05-control/is05Control.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def send_patch_request(url, body):
if args.sender:
configure_sender(url_staged, dummy_data)
else:
configure_receiver(url_staged, "xxxxxxxx-1dd2-xxxx-8044-cc988b8696a2", dummy_sdp_payload)
configure_receiver(url_staged, "aaaaaaaa-1dd2-11b2-8044-cc988b8696a2", dummy_sdp_payload)
elif ch == '7':
if args.sender:
configure_sender(url_staged, dummy_data_7)
Expand Down

0 comments on commit c9c569b

Please sign in to comment.