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

fix upload offset #15

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

## 1.0.5 - 2024-02-16
* fix upload offset

## 1.0.4 - 2023-05-18
* set default timeout_in_seconds to 180 seconds

Expand All @@ -13,4 +16,4 @@
* Add scan_buffer() function

## 1.0.0 - 2023-05-01
* Initial release
* Initial release
2 changes: 1 addition & 1 deletion amaas/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.2"
__version__ = "1.0.5"
2 changes: 1 addition & 1 deletion amaas/grpc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def _generate_messages(pipeline: _Pipeline, data_reader: BinaryIO, stats: dict)
stage=scan_pb2.STAGE_RUN,
file_name=None,
rs_size=0,
offset=data_reader.tell(),
offset=message.offset,
chunk=chunk)

stats["total_upload"] = stats.get(
Expand Down
Loading