fix(core): Prevent unhandled promise rejection on worker SIGINT
Closes #150. The worker process was hanging with an unhandled promise rejection when being stopped with SIGINT. The underlying issue was found to be an incorrect configuration of the TypeOrmModule. Explicitly naming the connection "worker" was causing Nest to be unable to find that connection when attempting to run the OnDestroy hooks, as explained in https://github.com/nestjs/typeorm/issues/184