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
const udev = require('udev'); const monitor = udev.monitor();
monitor.on('add', () => { console.log('1'); Promise.resolve() .then(() => { console.log('2'); }) .then(() => { console.log('3'); }); });
Output should be:
1 2 3
Output is
1
However if you do
monitor.on('add', () => { console.log('1'); setTimeout(() => { Promise.resolve() .then(() => { console.log('2'); }) .then(() => { console.log('3'); }); }) });
Then the output is
The text was updated successfully, but these errors were encountered:
@KevinDyer
Sorry, something went wrong.
If the Promise.resolve() works outside, then the culprit is likely in the function on_handle_event at udev.cc:51.
on_handle_event
No branches or pull requests
const udev = require('udev');
const monitor = udev.monitor();
Output should be:
1
2
3
Output is
1
However if you do
Then the output is
1
2
3
The text was updated successfully, but these errors were encountered: