Skip to content

Commit

Permalink
Merge pull request #69 from Staketab/dev
Browse files Browse the repository at this point in the history
fix /devnet/devnet
  • Loading branch information
sineDtS authored May 22, 2024
2 parents b6d8c9c + 6557e2d commit d6337b5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@ public class ZkCloudWorkerClient {
@Value("${zk-cloud-worker.chain}")
private String chain;

private static final String PATH_TO_ZK_CLOUD_WORKER = "";
private static final String PATH_TO_ZK_CLOUD_WORKER = "/";

public ResponseEntity<String> sendToZkCloudWorker(ZkCloudWorkerRequestDTO requestDTO) {
setDefaultValues(requestDTO);
log.info(requestDTO.toString());
log.info(zkCloudWorkerRestTemplate.getUriTemplateHandler().expand("/").toString());
return zkCloudWorkerRestTemplate.postForEntity(PATH_TO_ZK_CLOUD_WORKER, requestDTO, String.class);
}

Expand Down

0 comments on commit d6337b5

Please sign in to comment.