Janik Rabe

Results 11 comments of Janik Rabe

We've just run into a related issue. In this comment, `X` represents a string containing the character `a` 253 times. Then: - a TXT with zone file content `"X0123456789"` parses...

I've applied this to our DNS API repository which has a fairly extensive test suite, and everything looks good!

> Should still be done in packDomainName as well. Maybe also on the lexer level so that `. 1 IN TXT hello\` is also rejected? (I'd be happy to work...

Hi! I've opened #638 to fix a similar issue, but based on the last comment, it sounds like the problem may be somewhere else. Could you check if setting environment...

Thanks @alphabet5! Based on your stack trace, the panic occurs here: ``` if os.Getenv("USE_STATIC_RESOURCE_IDS") == "true" { resourceID = "terraform_managed_resource" } else { id := "" switch structData["id"].(type) { case...

Great :) Glad to hear it & happy to help!

An even number of slashes definitely seems legal. Digging a bit, it looks like `CNAME.parse()` receives an `example.com\` token. Maybe `(*zlexer).Next()` should return an error when `escape` is still `true`...

Thank you @miekg! You raise some very good points. Initially I would've said `(` `)` should be allowed, but the more I think about it, the more they seem like...

In our case it's coming from the API or a database column that needs to be searchable text. In most other cases, I would agree that storing wire format data...