We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The way we form this RMB cache path creates a path that's invalid for Windows:
tfgrid-sdk-go/rmb-sdk-go/peer/twindb.go
Line 134 in 76ac3fe
See here for an example of how this manifests.
What's happening is that the Host string includes a : and this is a reserved character in Windows that's not allowed in paths.
Host
:
The text was updated successfully, but these errors were encountered:
I have tested and confirmed that just swapping any : for - in the path fixes this issue.
-
Sorry, something went wrong.
No branches or pull requests
The way we form this RMB cache path creates a path that's invalid for Windows:
tfgrid-sdk-go/rmb-sdk-go/peer/twindb.go
Line 134 in 76ac3fe
See here for an example of how this manifests.
What's happening is that the
Host
string includes a:
and this is a reserved character in Windows that's not allowed in paths.The text was updated successfully, but these errors were encountered: