-
Notifications
You must be signed in to change notification settings - Fork 13
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
Fix reconciler TXT record handling #465
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add a few unit tests for these 2 utility functions so we don't waste time debugging this on staging.
@humphd Added! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Excellent, thank you. The only thing this doesn't do is the 4,000 limit:
The maximum length of a value in a TXT record is 4,000 characters.
However, I'm OK if we leave that out.
Actually, I don't think our db column holds that amount of info. Even if it did, we should inhibit the insert IMO |
* fix: Reconciler TXT record handling * fix: typo * feat: add tests, fix quotation mark handling * fix: backslash handling * fix * fix: comment
Closes #462