Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
Compilation erorr fix for TaskResource and WorkflowServiceTest
Browse files Browse the repository at this point in the history
  • Loading branch information
pctreddy committed Mar 9, 2018
1 parent 0ffb2d4 commit 122a326
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 62 deletions.
2 changes: 1 addition & 1 deletion client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies {
compile "com.sun.jersey:jersey-client:${revJerseyClient}"
compile "org.slf4j:slf4j-api:${revSlf4j}"
compile "com.netflix.spectator:spectator-api:${revSpectator}"
compile 'com.netflix.eureka:eureka-client'
compile 'com.netflix.eureka:eureka-client:latest.release'
compile "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:${revJaxrsJackson}"
compile "com.netflix.archaius:archaius-core:${revArchaius}"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public String updateTask(TaskResult task) throws Exception {
@ApiOperation("Ack Task is recieved")
@Consumes({ MediaType.WILDCARD })
public String ack(@PathParam("taskId") String taskId, @QueryParam("workerid") String workerId) throws Exception {
return "" + taskService.ackTaskRecieved(taskId, workerId);
return "" + taskService.ackTaskReceived(taskId);
}

@POST
Expand Down
Loading

0 comments on commit 122a326

Please sign in to comment.