mirror of
https://git.yoctoproject.org/poky-contrib
synced 2025-05-08 15:42:17 +08:00
send-error-report: Apply v2 of the patch
The v1 of the patch was merged, update to v2. (From OE-Core rev: 54c84be6e4643396b47b7d8cca803f914455ade9) Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
640970e6b7
commit
4726c18047
@ -142,10 +142,9 @@ def send_data(data, args):
|
||||
|
||||
req = urllib.request.Request(url, data=data, headers=headers)
|
||||
|
||||
if args.debug:
|
||||
log.debug(f"Request URL: {url}")
|
||||
log.debug(f"Request Headers: {headers}")
|
||||
log.debug(f"Request Data: {data.decode('utf-8')}")
|
||||
log.debug(f"Request URL: {url}")
|
||||
log.debug(f"Request Headers: {headers}")
|
||||
log.debug(f"Request Data: {data.decode('utf-8')}")
|
||||
|
||||
try:
|
||||
response = urllib.request.urlopen(req)
|
||||
@ -154,13 +153,9 @@ def send_data(data, args):
|
||||
log.debug(f"Response Content: {e.read().decode('utf-8')}")
|
||||
sys.exit(1)
|
||||
|
||||
if args.debug:
|
||||
log.debug(f"Response Status: {response.status}")
|
||||
log.debug(f"Response Headers: {response.getheaders()}")
|
||||
log.debug(f"Response Content: {response.read().decode('utf-8')}")
|
||||
else:
|
||||
print(response.read().decode('utf-8'))
|
||||
|
||||
log.debug(f"Response Status: {response.status}")
|
||||
log.debug(f"Response Headers: {response.getheaders()}")
|
||||
log.info(response.read().decode('utf-8'))
|
||||
|
||||
def validate_server_url(args):
|
||||
# Get the error report server from an argument
|
||||
|
Loading…
x
Reference in New Issue
Block a user