-
Notifications
You must be signed in to change notification settings - Fork 99
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 FIFO pipe handling #174
Open
gburca
wants to merge
33
commits into
uskudnik:master
Choose a base branch
from
gburca:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Adding eu-central-1 Frankfurt region
Previously glacier-cmd truncated output with headers over 100 characters which elided the 138 character archive ID. Fixes uskudnik#163.
Previously "glacier-cmd download" emitted a trailing None message: $ glacier-cmd download VAULTNAME zwvjqvd25vxcYLuaGOUhTMi8GW_PQ9M7-a9-Xpr6OX38WhABMBrG4U3w21vO08sgYFNrjRBgNuYiomc7mEkiaojIbkoETF6X1qnSDl-AR-ORzlgjIVud6zWM2R8yjuhg9g5q_M0LVg --outfile out Wrote 4.0 bytes. Rate 4.00 bytes/s. Rate 1.22 MB/s, average 4.00 bytes/s, ETA 15:08:53. None
- FIFO pipes don't handle random access and behave more like stdin.
Conflicts: glacier/GlacierWrapper.py
- Better logging
- Added more details to some of the results.
Has this project repository been abandoned? There are a whole bunch of pull requests that have been lingering for many months (years?) and the last commit was almost 2 years ago. |
- The further along we are in the backup, the harder we try to complete the upload. A large backup will thus allow for more failures and retries before being aborted.
- removed %s and replaced with .format() as usage of %s si deprecated
trying to improve the code structure in the effort of of adding unit tests later
account-id support has been added
account-id support has been added
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Originally it was possible to upload data from a FIFO pipe, but at some point that feature was lost. This commit brings it back.