Skip to content

Commit

Permalink
Merge pull request #69 from certego/develop
Browse files Browse the repository at this point in the history
0.7.11
  • Loading branch information
mlodic committed Aug 6, 2024
2 parents 9c389eb + 9593f17 commit 9ac1465
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

**[Get it on PyPi](https://pypi.org/project/certego-saas/)**

## 0.7.11
fixed noisy log for BI

## 0.7.10
Update elastic document format + added serializers

Expand Down
2 changes: 1 addition & 1 deletion certego_saas/ext/upload/elastic.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def upload(
docs = docs[:max_number]
logger.info(f"Uploading {docs.count()} documents")
jsons = serializer(instance=docs, many=True).data
logger.info(f"Documents to upload: {jsons}")
logger.debug(f"Documents to upload: {jsons}")
success, errors = bulk(client, jsons, request_timeout=timeout)
logger.info("Finished Upload. Starting deletion documents")
docs.delete()
Expand Down
2 changes: 1 addition & 1 deletion certego_saas/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.7.10"
VERSION = "0.7.11"

0 comments on commit 9ac1465

Please sign in to comment.