-
Notifications
You must be signed in to change notification settings - Fork 30k
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
test: fixup failing test/internet/test-dns.js #38241
Conversation
This comment has been minimized.
This comment has been minimized.
CI broken |
CI is green, there's no reason to make this wait the full 48 hours. Please 👍🏻 to fast-track |
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.
@jasnell Should we update this comment here as well:
// Try to set an invalid TTL (valid ttl is > 0 and < 256) |
- // Try to set an invalid TTL (valid ttl is > 0 and < 256)
+ // Try to set an invalid TTL (valid ttl is >= 0 and < 256)
There's the known failing Build from tarball action. Our collaborator guide says
You could argue the failing test is nothing to do with this PR, but if collaborators are free to ignore failing CI we might as well not bother running them. |
Ugh... I missed that failing github ci bit...extremely frustrating. |
The `ttl` for the `nodejs.org` DNS record is returning `0` currently. The test checks for `> 0`, causing the test to fail. Signed-off-by: James M Snell <jasnell@gmail.com>
0d92399
to
312ad3a
Compare
Landed in 5e588c1 |
The `ttl` for the `nodejs.org` DNS record is returning `0` currently. The test checks for `> 0`, causing the test to fail. Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: #38241 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
The `ttl` for the `nodejs.org` DNS record is returning `0` currently. The test checks for `> 0`, causing the test to fail. Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: #38241 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
The `ttl` for the `nodejs.org` DNS record is returning `0` currently. The test checks for `> 0`, causing the test to fail. Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: #38241 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
The
ttl
for thenodejs.org
DNS record is returning0
currently. The test checks for> 0
, causing the test to fail.Signed-off-by: James M Snell jasnell@gmail.com