Fixed the Null Pointer Exception on mdm-submit operation (#4751)
* Fixed the Null Pointer Exception on mdm-submit operation * Addressing suggestion
This commit is contained in:
parent
6eafd3fe5d
commit
55613a9bf2
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
type: fix
|
||||
issue: 4750
|
||||
jira: SMILE-6152
|
||||
title: "Previously, an mdm-submit operation with Prefer: response-async header resulted in a NullPointerException in the error logs
|
||||
and a batch job status of FAILED. This has been fixed."
|
|
@ -53,6 +53,7 @@ public class MdmInflateAndSubmitResourcesStep implements IJobStepWorker<MdmSubmi
|
|||
private ResponseTerminologyTranslationSvc myResponseTerminologyTranslationSvc;
|
||||
@Autowired
|
||||
private IMdmChannelSubmitterSvc myMdmChannelSubmitterSvc;
|
||||
@Autowired
|
||||
private IIdHelperService<? extends IResourcePersistentId> myIdHelperService;
|
||||
|
||||
@Nonnull
|
||||
|
|
Loading…
Reference in New Issue