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
In version 2022.5.0, AbstractFileSystem.unstrip_protocol fails to preprend protocol:// to the path if the path happens to start with the characters of one of the class's protocols. For example:
In version 2022.5.0,
AbstractFileSystem.unstrip_protocol
fails to preprendprotocol://
to the path if the path happens to start with the characters of one of the class's protocols. For example:It works correctly any time the beginning of the path does not match the protocol:
Instead of returning the original path any time it starts with one of the protocols, the function should instead check for
protocol + "://"
.The text was updated successfully, but these errors were encountered: