Skip to content

Commit

Permalink
Feature/azure_table_storage (#14182)
Browse files Browse the repository at this point in the history
* Fix a bug where an incorrect number of parameters were passed to `split_large_property_value`.

* Bump version.
  • Loading branch information
Falven authored Jun 17, 2024
1 parent 01d2623 commit 01e5173
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def serialize(service_mode: ServiceMode, value: dict) -> dict:

validate_table_property_count(num_properties)

parts = split_large_property_value(num_parts, bytes_val, item, key)
parts = split_large_property_value(num_parts, bytes_val, key)
item.update(parts)

return item
Expand Down
2 changes: 1 addition & 1 deletion llama-index-utils/llama-index-utils-azure/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ license = "MIT"
maintainers = ["falven"]
name = "llama-index-utils-azure"
readme = "README.md"
version = "0.1.0"
version = "0.1.1"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down

0 comments on commit 01e5173

Please sign in to comment.