You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At module startup, the following error is produced: WARN - ModuleFactory.loadAdvice(894) |2020-02-28 07:47:24,479| Could not load advice point: org.openmrs.module.appointments.service.AppointmentServiceService
This advice is defined in omod module, the file src/main/resources/config.xml ( line 47): <point>org.openmrs.module.appointments.service.AppointmentServiceService</point>
Should be replaced by: <point>org.openmrs.module.appointments.service.AppointmentService</point>
The text was updated successfully, but these errors were encountered:
deniger
added a commit
to deniger/openmrs-module-appointments
that referenced
this issue
Feb 28, 2020
Hello @deniger!
Thanks for raising this issue. There has been a mistake in the config.xml while renaming one of the services.
However the correct service it should point to is org.openmrs.module.appointments.service.AppointmentServiceDefinitionService instead of AppointmentService.
This AppointmentServiceService was renamed to AppointmentServiceDefinitionService as part of this commit but the changes in config.xml were missed.
At module startup, the following error is produced:
WARN - ModuleFactory.loadAdvice(894) |2020-02-28 07:47:24,479| Could not load advice point: org.openmrs.module.appointments.service.AppointmentServiceService
This advice is defined in omod module, the file
src/main/resources/config.xml
( line 47):<point>org.openmrs.module.appointments.service.AppointmentServiceService</point>
Should be replaced by:
<point>org.openmrs.module.appointments.service.AppointmentService</point>
The text was updated successfully, but these errors were encountered: