Skip to content

Commit 9860373

Browse files
committed
Merge branch '590-debug-type' into 2.0.x
2 parents 604e445 + ac553fa commit 9860373

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/applications/AbstractApplicationEntity.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public abstract class AbstractApplicationEntity {
5454
@Deprecated
5555
@JsonProperty("debug")
5656
@Nullable
57-
public abstract Boolean getDebug();
57+
public abstract String getDebug();
5858

5959
/**
6060
* The detected start command
@@ -184,4 +184,3 @@ public abstract class AbstractApplicationEntity {
184184
public abstract String getState();
185185

186186
}
187-

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/applications/_CreateApplicationRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ abstract class _CreateApplicationRequest {
5757
@Deprecated
5858
@JsonProperty("debug")
5959
@Nullable
60-
abstract Boolean getDebug();
60+
abstract String getDebug();
6161

6262
/**
6363
* The command detected by the buildpack during staging

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/applications/_UpdateApplicationRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ abstract class _UpdateApplicationRequest {
6363
@Deprecated
6464
@JsonProperty("debug")
6565
@Nullable
66-
abstract Boolean getDebug();
66+
abstract String getDebug();
6767

6868
/**
6969
* Use diego to stage and to run when available

0 commit comments

Comments
 (0)