We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I got a failed continuous integration build based on commit 2fd9c77. Does this mean that this pg package no longer supports node 0.10?
Here is the continuous integration build: https://travis-ci.org/evansiroky/db-streamer/builds/139227721
The text was updated successfully, but these errors were encountered:
It still supports [email protected] - you'll need to polyfill the Promise API:
Promise
https://github.com/brianc/node-postgres/blob/master/test/test-helper.js#L5
That's how I did it here. note: my tests are still running green against [email protected]! Sorry for the headache!
Sorry, something went wrong.
I had the same problem and I got polyfill and added this code to fix everything:
if (typeof Promise == 'undefined') { global.Promise = require('promise-polyfill') }
No branches or pull requests
I got a failed continuous integration build based on commit 2fd9c77. Does this mean that this pg package no longer supports node 0.10?
Here is the continuous integration build: https://travis-ci.org/evansiroky/db-streamer/builds/139227721
The text was updated successfully, but these errors were encountered: