Skip to content

Commit

Permalink
Fix class path for DeferredResult (swagger-api#6452)
Browse files Browse the repository at this point in the history
  • Loading branch information
sasavilic authored and fvarose committed Oct 12, 2017
1 parent f72844f commit e3c6f4d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ public void processOpts() {
additionalProperties.put(RESPONSE_WRAPPER, "org.springframework.util.concurrent.ListenableFuture");
break;
case "DeferredResult":
additionalProperties.put(RESPONSE_WRAPPER, "org.springframework.web.context.request.DeferredResult");
additionalProperties.put(RESPONSE_WRAPPER, "org.springframework.web.context.request.async.DeferredResult");
break;
case "HystrixCommand":
additionalProperties.put(RESPONSE_WRAPPER, "com.netflix.hystrix.HystrixCommand");
Expand Down

0 comments on commit e3c6f4d

Please sign in to comment.