dns: remove dns.promises experimental warning

PR-URL: https://github.com/nodejs/node/pull/26592
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
This commit is contained in:
cjihrig 2019-03-11 12:49:59 -04:00
parent 415a825dc0
commit aa2ac1981a
No known key found for this signature in database
GPG Key ID: 7434390BDBE9B9C5
2 changed files with 0 additions and 4 deletions

View File

@ -321,8 +321,6 @@ Object.defineProperties(module.exports, {
if (promises === null) {
promises = require('internal/dns/promises');
promises.setServers = defaultResolverSetServers;
process.emitWarning('The dns.promises API is experimental',
'ExperimentalWarning');
}
return promises;
}

View File

@ -27,8 +27,6 @@ common.expectWarning({
'internal/test/binding': [
'These APIs are for internal testing only. Do not use them.'
],
// For dns.promises.
'ExperimentalWarning': 'The dns.promises API is experimental',
// For calling `dns.lookup` with falsy `hostname`.
'DeprecationWarning': {
DEP0118: 'The provided hostname "false" is not a valid ' +