Skip to content

Commit

Permalink
Merge branch 'master' into vonage_integrations
Browse files Browse the repository at this point in the history
  • Loading branch information
yogesh-s-modak authored Nov 19, 2024
2 parents da978f4 + f3dbc6b commit e79f4c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .ddev/ci/scripts/traces.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ def replay(*, record_file: str, port: int) -> None:
record = json.loads(line)
path = record['path']
body = b64decode(record['body'])

print(f'PUT {path} {len(body)} bytes: ', end='')
conn.request('PUT', path, body=body, headers=record['headers'])
print(conn.getresponse().read().decode('utf-8'))
response = conn.getresponse()
response.read() # Needs to be done to prevent ResponseNotReady.
print(response.status, response.reason)


def main():
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/submit-traces.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
DD_API_KEY: "${{ secrets.DD_API_KEY }}"
DD_HOSTNAME: "none"
DD_INSIDE_CI: "true"
DD_LOG_LEVEL: "trace"
DD_LOG_LEVEL: "warn"

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit e79f4c8

Please sign in to comment.