Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Development: Save timestamp along with other failed App Store Connect HTTP request info #254

Merged
merged 2 commits into from
Aug 25, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Save timestamp along with other failed App Store Connect HTTP request…
… info
  • Loading branch information
priitlatt committed Aug 25, 2022
commit 068949b3df2e5bf3c21fa5b30fe3906758aa7d4a
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "codemagic-cli-tools"
version = "0.31.0"
version = "0.31.1"
description = "CLI tools used in Codemagic builds"
readme = "README.md"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion src/codemagic/__version__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__title__ = 'codemagic-cli-tools'
__description__ = 'CLI tools used in Codemagic builds'
__version__ = '0.31.0.dev'
__version__ = '0.31.1.dev'
__url__ = 'https://github.com/codemagic-ci-cd/cli-tools'
__licence__ = 'GNU General Public License v3.0'
1 change: 1 addition & 0 deletions src/codemagic/utilities/auditing/http_request_auditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ def _serialize_audit_info(self):
'content': self._serialize_response_content(),
'elapsed': self._response.elapsed.total_seconds(),
},
'timestamp': datetime.utcnow().isoformat(),
'version': __version__,
}

Expand Down