Skip to content

Commit

Permalink
SK-1308 Fix bug in Python SDK
Browse files Browse the repository at this point in the history
- Update CHANGELOG
- Fixed wrong info log in case of partial success in get method
  • Loading branch information
skyflow-vivek committed Dec 7, 2023
1 parent ff61c5c commit 6e04d3b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## [1.15.1] - 2023-12-07
## Fixed
- Not receiving tokens when calling Get with options tokens as true.

## [1.15.0] - 2023-10-30
## Added
- options tokens support for Get method.
Expand Down
3 changes: 1 addition & 2 deletions skyflow/vault/_get_by_id.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import json
from ._config import RedactionType
from skyflow._utils import InterfaceName, getMetrics
from cryptography.fernet import Fernet

interface = InterfaceName.GET_BY_ID.value

Expand Down Expand Up @@ -89,8 +88,8 @@ def createGetResponseBody(responses):
"records": [],
"errors": []
}
partial = False
for response in responses:
partial = False
r = response.result()
status = r[1]
try:
Expand Down

0 comments on commit 6e04d3b

Please sign in to comment.