We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27457f5 commit 73c5eacCopy full SHA for 73c5eac
service/src/main/java/uk/nhs/adaptors/gp2gp/ehr/EhrResendController.java
@@ -68,10 +68,10 @@ public ResponseEntity<String> scheduleEhrExtractResend(@PathVariable String conv
68
return new ResponseEntity<>(errorBody, HttpStatus.CONFLICT);
69
}
70
71
- LOGGER.info("Creating tasks to start the EHR Extract process resend");
72
var updatedEhrExtractStatus = prepareEhrExtractStatusForNewResend(ehrExtractStatus);
73
ehrExtractStatusRepository.save(updatedEhrExtractStatus);
74
createGetGpcStructuredTask(updatedEhrExtractStatus);
+ LOGGER.info("Scheduled GetGpcStructuredTask for resend of ConversationId: {}", conversationId);
75
76
return new ResponseEntity<>(HttpStatus.ACCEPTED);
77
0 commit comments