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
Is your feature request related to a problem? Please describe.
Currently queries of the form <name>.service.<domain> are supported. <name> values cannot have the dot character. Services in our project tend to have the dot character. Can it be supported please?
Describe the solution you'd like
Solution is simple. SERVICE_NAME_REGEX in DnsQueryHandler needs minor change. Add \\. in the first capturing group. I.e.
private static final String SERVICE_NAME_REGEX = "^_?([\\w\\-\\.]+)\\.(?:_\\w+\\.)?(?:service|connect)\\.";
Describe alternatives you've considered
None.
Additional context
None.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently queries of the form <name>.service.<domain> are supported. <name> values cannot have the dot character. Services in our project tend to have the dot character. Can it be supported please?
Describe the solution you'd like
Solution is simple. SERVICE_NAME_REGEX in DnsQueryHandler needs minor change. Add \\. in the first capturing group. I.e.
private static final String SERVICE_NAME_REGEX = "^_?([\\w\\-\\.]+)\\.(?:_\\w+\\.)?(?:service|connect)\\.";
Describe alternatives you've considered
None.
Additional context
None.
The text was updated successfully, but these errors were encountered: