Skip to content

Commit

Permalink
ignore retrofit package for nebula publish
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaslin committed Mar 26, 2018
1 parent 585c62d commit 653e37e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions clouddriver-titus.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ dependencies {
compile "com.netflix.spinnaker.clouddriver:clouddriver-aws:${clouddriverVersion}"
compile spinnaker.dependency('bootActuator')
compile spinnaker.dependency('bootWeb')
compile 'com.squareup.retrofit2:retrofit:2.0.0-beta4'
compile 'com.squareup.retrofit2:converter-jackson:2.0.0-beta4'
compile 'com.squareup.retrofit2:retrofit:2.0.0'
compile 'com.squareup.retrofit2:converter-jackson:2.0.0'
compile 'com.squareup.okhttp3:okhttp:3.1.2'
compile 'com.squareup.okhttp3:logging-interceptor:3.1.2'
testCompile "org.slf4j:slf4j-simple:${spinnaker.version('slf4j')}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ private <T> T execute(String requestName, Call<T> call) {
try {
retrofit2.Response<T> response = call.clone().execute();
responseCode = response.code();
success = response.isSuccess();
success = response.isSuccessful();
if (success) {
return response.body();
}
Expand Down

0 comments on commit 653e37e

Please sign in to comment.