У меня есть следующий код, который опрашивает конечную точку http, используя p-wait-for
const pWaitFor = require('p-wait-for');
const rp = require('request-promise-native');
const options = {
method: 'GET',
simple: false,
resolveWithFullResponse: true,
url: 'https://httpbin.org/json1'
};
const waitOpts = {interval: 15};
(async () => {
await pWaitFor(rp(options), waitOpts);
console.log('done calling');
})();
Я получаю ошибку
(node:36125) UnhandledPromiseRejectionWarning: TypeError: Expected condition to return a boolean
at Promise.resolve.then.then.value (node_modules/p-wait-for/index.js:16:13)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
at Function.Module.runMain (module.js:695:11)
at startup (bootstrap_node.js:191:16)
at bootstrap_node.js:612:3
(node:36125) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:36125) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
Цель состоит в том, чтобы продолжать опрашивать конечную точку https://httpbin.org/json1 каждые 15 секунд. Он должен продолжать работать бесконечно, потому что он возвращает 404, и запрос-обещание превращается в отклоненное обещание.