You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to fix a couple of things in the URL class (in utils), and got utterly lost in the code... :( I am not sure I can fix this w/o breaking other parts. I would propose to replace the URL class with something simpler and maintainable...
Back in the days I have been on the lookout for a better Python URL class but couldn't really find one.
I would be very careful with changing behavior of the URL class as people as well as adaptors have probably silently put in their own checks and fixes in place or some of the small issues in the URL class. Changing behavior - even though it might be the 'correct' thing to do - might cause random failures elsewhere.
While trying to debug a piece of code of Vivek, and after discussion with AndreM, we came across the following issue and conclusion:
sftp://username@hostname//etc/passwd and sftp://username@hostname/etc/passwd are supposed to be the same. However, SAGA treats them differently.
There is probably a path normalization missing somewhere.
Recording this here and will tell Vivek to use the "single slash" path format for now.
Might look into it myself too if time permits.
The text was updated successfully, but these errors were encountered: