Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ private int downloadDataFromServer(SyncDownloadMaster syncDownloadMaster,String
// initializing RestTemplate
RestTemplate restTemplate = new RestTemplate();
// Provide the required second argument, e.g., an empty string or appropriate authorization token
HttpEntity<Object> request = RestTemplateUtil.createRequestEntity(syncDownloadMaster, ServerAuthorization, jwtToken);
HttpEntity<Object> request = RestTemplateUtil.createRequestEntity(syncDownloadMaster, ServerAuthorization, "datasync");
// Call rest-template to call API to download master data for given table
ResponseEntity<String> response = restTemplate.exchange(dataSyncDownloadUrl, HttpMethod.POST, request,
String.class);
Expand Down