-
Notifications
You must be signed in to change notification settings - Fork 429
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
push inside non-existent directory doesn't seem to work #933
Comments
Try the -ignore-checksum option on Push and Pull commands, more details here https://github.com/odeke-em/drive#verifying-checksums Regards CB |
Not working... ~/go/bin/drive push -ignore-checksum VCFs/ |
The logic is a bit perverse, try something like .... ~/go/bin/drive push -ignore-checksum=false VCFs/ |
Still doesn't work! I don't understand what is happening. It used to work very smoothly up to 2 days ago. Should I better reinstall el drive? Thanks CB for your suggestions. |
If the software was working and now fails is a different context. To ensure repeatable testing be sure to execute the drive commands from a command prompt in an interactive terminal window, not in a script file with re-directed output and errors to a log file. If you are using Linux check the exit status after the drive command. eg regards CB |
Yes. I am running the command always in the terminal. One interesting thing is that when I want to see the contents of the remote directory it's telling me that the specified path cannot be found remotely.
|
Hello @alexiou1977, thank you for the issue and welcome to drive! Let me try to reproduce this and investigate then fix if necessary. |
Hi odeke-em, Any news about my issue? Regards, |
Hello @alexiou1977 thanks for the reminder. My apologies for the late reply, I've been travelling around and also pushing out work related code. However, I was able to reproduce this and I think I have a hunch on what is going wrong. I'll try to work on this in the next 9 hours or better over the weekend. |
Ensure that nil is properly sent back after remote change/file resolution. This regression was caused by forgetting to send back that nil. The consequence of the bug was that trying to push from non-existent folders would erraneously give back ```shell Resolving... Everything is up-to-date. ``` since the remotesChan channel would get closed after resolution without sending notifying whoever was resolving that the file or parent didn't exist remotely. Fixes #933
Ensure that nil is properly sent back after remote change/file resolution. This regression was caused by forgetting to send back that nil. This regression was caused by PR #741. The consequence of the bug was that trying to push from non-existent folders would erraneously give back ```shell Resolving... Everything is up-to-date. ``` since the remotesChan channel would get closed after resolution without sending notifying whoever was resolving that the file or parent didn't exist remotely. Fixes #933
@alexiou1977 thank you for the patience and for the advocacy to fix this issue. As promised, I've fixed it with PR #941. Please get the latest by $ go get -u -v github.com/odeke-em/drive/drive-gen && drive-gen Please reopen if symptoms persist! |
Muchas gracias odeke-em.
…-- Konstantinos Alexiou, PhD
Bioinformatician
IRTA
Centre de Recerca en Agrigenòmica (CRAG) CSIC-IRTA-UAB
Campus UAB, Edifici CRAG
08193 Bellaterra (Cerdanyola del Vallès)
Tel: +34 93.563.66.00 ext. 3360
konstantinos.alexiou@cragenomica.es - konstantinos.alexiou@irta.cat
www.cragenomica.es - www.irta.cat
2017-07-24 8:01 GMT+02:00 Emmanuel T Odeke <notifications@github.com>:
@alexiou1977 <https://github.com/alexiou1977> thank you for the patience
and for the advocacy to fix this issue. As promised, I've fixed it with PR
#941 <#941>. Please get the latest
by
$ go get -u -v github.com/odeke-em/drive/drive-gen && drive-gen
Please reopen if symptoms persist!
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#933 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/APJ5xR1vJDjvA65Sim8BffzFyLIT1At_ks5sRDNHgaJpZM4OMIeC>
.
|
🍻 anytime @alexiou1977, hope that solved your issue. |
Hi,
I have done some changes to a folder of a locally-mounted remote path but these changes are not pushed to the remote directory. I am just getting the message that everything is up-to-date. What is happening?
Thanks
The text was updated successfully, but these errors were encountered: