my nodejs script is not exiting on its own after successful execution
I just went through this issue. The problem with just using process.exit() is that the program I am working on was creating handles, but never destroying them. It was processing a directory and putting data into orientdb. so some of the things that I have come to learn is that database connections need to be … Read more