-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Non zero RC for S3 sync even if file is excluded #1117
Comments
This was reported half a year ago - can you tell us what the delay is in fixing this? |
Any news on this issue? Thanks! |
Perhaps it is time for someone to write a better tool. |
I'm also interested in a fix to this issue. Any progress? |
Also facing this when trying to backup a docker volume. It contains a couple of sockets and this produces Because |
I am experiencing this as well - warnings for explicitly excluded files. This is problematic because When automating We exclude everything and only include the directories we want to sync. The result is that the expected files are uploaded but because of the non-zero exit code - the Concourse CI job using the above resource fails. |
So, does this need additional labels? As a workaround, in some cases you can probably get away with first copying stuff (without the problem 'files') to |
* chore(version): set 0.14.3.dev1 version (aws#1112) (aws#1113) * Depend on development version of lambda-builders for dev builds (aws#1111) * Depend on development version of lambda-builders for dev builds * Adding prod.txt to manifest * Splitting dev and tool dependencies * fix(build): Resolve path after .aws-sam is created (aws#1110) * fix(build): Resolve path after .aws-sam is created * fix: build (make pr) * Design and implementation for producing debug build artifacts (aws#1095) * design: Initial Design for producing debug artifacts * initial implementation * Adding unit tests * Integration test with debug build mode * Adjust Design doc and add keyword arg to a call * fix(dotnet): init template fixes (aws#1117) * chore(version): set 0.15.0 (aws#1125) * Revert "Depend on development version of lambda-builders for dev builds (aws#1111)" (aws#1128) This reverts commit 7e9de790e23791ba176faff2030286db4007e503. * Bumping to Lambda Builders 0.3.0 (aws#1129) Bumping to Lambda Builders 0.3.0 * fix(func-tests): add dependency manager param (aws#1130)
This catches bug aws#1117 (which is now fixed).
This catches bug aws#1117 (which is now fixed).
This catches bug aws#1117 (which is now fixed).
This catches bug aws#1117 (which is now fixed).
This catches bug aws#1117 (which is now fixed).
A file that would is
--exclude
'd should not trigger a non zero RC if we can't read the file. For example:Given that
/tmp/demo/bad
was never going to be transferred in the first place (because it's been excluded via--exclude '*'
, it seems odd that this will trigger a non zero RC. I'd expect the RC to be 0 here.The text was updated successfully, but these errors were encountered: