Skip to content

Commit 5dfe217

Browse files
committed
fix: Remove redundant log to reduce noise
1 parent f4ec43d commit 5dfe217

File tree

6 files changed

+19
-7
lines changed

6 files changed

+19
-7
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [2.1.1] - 2026-01-15
10+
### Chore
11+
- Remove redundant log to reduce noise
12+
13+
914
## [2.1.0] - 2026-01-15
1015
### Dependency
1116
- Upgraded internal dependency `redis` to version `redis >=7.1.0, <8.0.0`
@@ -468,7 +473,16 @@ env variables, that should be used to configure logging.
468473
- Event classes: `StreamEvent`, `ScheduledEvent` and `TaskEvent`.
469474

470475

471-
[Unreleased] https://github.com/corva-ai/python-sdk/compare/v1.14.2...master
476+
[Unreleased] https://github.com/corva-ai/python-sdk/compare/v2.1.1...master
477+
478+
[2.1.1] https://github.com/corva-ai/python-sdk/compare/v2.1.0...v2.1.1
479+
[2.1.0] https://github.com/corva-ai/python-sdk/compare/v1.15.1...v1.16.1
480+
[2.1.0] https://github.com/corva-ai/python-sdk/compare/v2.0.3...v2.1.0
481+
[2.0.3] https://github.com/corva-ai/python-sdk/compare/v2.0.2...v2.0.3
482+
[2.0.2] https://github.com/corva-ai/python-sdk/compare/v2.0.1...v2.0.2
483+
[2.0.1] https://github.com/corva-ai/python-sdk/compare/v2.0.0...v2.0.1
484+
[1.15.1] https://github.com/corva-ai/python-sdk/compare/v1.15.0...v1.15.1
485+
[2.0.0] https://github.com/corva-ai/python-sdk/compare/v1.15.0...v2.0.0
472486
[1.14.2] https://github.com/corva-ai/python-sdk/compare/v1.14.1...v1.14.2
473487
[1.14.1] https://github.com/corva-ai/python-sdk/compare/v1.14.0...v1.14.1
474488
[1.14.0] https://github.com/corva-ai/python-sdk/compare/v1.13.1...v1.14.0

docs/antora-playbook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
start_path: docs
88
branches: []
99
# branches: HEAD # Use this for local development
10-
tags: [v2.1.0]
10+
tags: [v2.1.1]
1111
asciidoc:
1212
attributes:
1313
page-toclevels: 5

docs/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
name: corva-sdk
2-
version: 2.1.0
2+
version: 2.1.1
33
nav: [modules/ROOT/nav.adoc]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
name = "corva-sdk"
77
description = "SDK for building Corva DevCenter Python apps."
88
readme = "README.md"
9-
version = "2.1.0"
9+
version = "2.1.1"
1010
license = { text = "The Unlicense" }
1111
authors = [
1212
{ name = "Jordan Ambra", email = "jordan.ambra@corva.ai" }

src/corva/cache_adapter.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,12 @@ def run(self) -> bool:
9393

9494
# Legacy structure must exist; otherwise nothing to do
9595
if not self.client.exists(self.zset_name):
96-
Logger.info("Legacy cache does not exist, skip migration")
9796
return False
9897

9998
new_hash_name = self.NEW_HASH_PREFIX + self.hash_name
10099

101100
# If new hash already exists, consider migration already done
102101
if self.client.exists(new_hash_name):
103-
Logger.info("New cache key already exists, skip migration")
104102
return False
105103

106104
# Current server time in ms

src/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "2.1.0"
1+
VERSION = "2.1.1"

0 commit comments

Comments
 (0)