I am upgrading NServiceBus from an older version to version 7. Half of the code was already upgraded by an earlier developer. The project is using a mediator pattern and there are lots of handlers in one subscriber project. Most of the handlers are async.
These handlers perform Database updates and some other handlers perform database updates and web service calls.
Inside the handlers there are lots of sync methods that do database operations and web service calls.
Since the handlers are both async and sync, will I face any issues if I move to production with this code?