Решено: получить «UnhandledPromiseRejectionWarning: Error» при быстром запуске и в примере кода для bulkReadDocuments - PullRequest
0 голосов
/ 25 марта 2019

При использовании Quick Start из документации Domino AppDev Pack , я получаю сообщение об ошибке:

(node:46496) UnhandledPromiseRejectionWarning: Error
    at new DominoDbError (C:\Users\tbahn\AppData\Roaming\npm\node_modules\@domino\domino-db\src\domino-db-error.js:6:16)
    at wrapError (C:\Users\tbahn\AppData\Roaming\npm\node_modules\@domino\domino-db\src\requests\grpc\utils\grpc-helpers.js:124:10)
    at client.bulkNote (C:\Users\tbahn\AppData\Roaming\npm\node_modules\@domino\domino-db\src\requests\grpc\utils\bulk-document.js:157:18)
    at Object.onReceiveStatus (C:\Users\tbahn\AppData\Roaming\npm\node_modules\@domino\domino-db\node_modules\grpc\src\client_interceptors.js:1189:9)
    at InterceptingListener._callNext (C:\Users\tbahn\AppData\Roaming\npm\node_modules\@domino\domino-db\node_modules\grpc\src\client_interceptors.js:564:42)
    at InterceptingListener.onReceiveStatus (C:\Users\tbahn\AppData\Roaming\npm\node_modules\@domino\domino-db\node_modules\grpc\src\client_interceptors.js:614:8)
    at callback (C:\Users\tbahn\AppData\Roaming\npm\node_modules\@domino\domino-db\node_modules\grpc\src\client_interceptors.js:841:24)
(node:46496) 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:46496) [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.

Ошибка в строке:

const response = await database.bulkCreateDocuments(createOptions);

Та же ошибка, что и в примере кода database.bulkReadDocuments.

1 Ответ

1 голос
/ 25 марта 2019

Чтобы найти лучшие сообщения об ошибках, вы должны отловить выдаваемую ошибку.

try {
  const response = await database.bulkCreateDocuments(createOptions);
} catch (e) {
  console.error(e);
}
...