Skip to content
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

The Locator is truncating what is ignored based on \ characters. #170

Closed
schmidtw opened this issue Mar 15, 2024 · 0 comments · Fixed by #171
Closed

The Locator is truncating what is ignored based on \ characters. #170

schmidtw opened this issue Mar 15, 2024 · 0 comments · Fixed by #171
Assignees

Comments

@schmidtw
Copy link
Member

For a Locator string: dns:foo.bar.com/service/ignored/really/really/ignored the Locator should look like:

l := Locator{
    Scheme:    SchemeDNS,
    Authority: "foo.bar.com",
    Service:   "service",
    Ignored:   "/ignored/really/really/ignored"
}

But I'm getting:

l := Locator{
    Scheme:    SchemeDNS,
    Authority: "foo.bar.com",
    Service:   "ignored",
    Ignored:   "/really"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant