Make debugQuery false as default
This commit is contained in:
parent
c87fcb31a8
commit
913d9c0b8e
|
@ -86,7 +86,7 @@ public class DataSourceRequest {
|
|||
|
||||
@Parameter(
|
||||
description = "Retrieve debug information for the search query",
|
||||
schema = @Schema(type = "boolean", defaultValue = "true")
|
||||
schema = @Schema(type = "boolean", defaultValue = "false")
|
||||
)
|
||||
private Boolean debugQuery = false;
|
||||
|
||||
|
|
|
@ -65,7 +65,7 @@ public class OrganizationRequest {
|
|||
|
||||
@Parameter(
|
||||
description = "Retrieve debug information for the search query",
|
||||
schema = @Schema(type = "boolean", defaultValue = "true")
|
||||
schema = @Schema(type = "boolean", defaultValue = "false")
|
||||
)
|
||||
private Boolean debugQuery = false;
|
||||
|
||||
|
|
|
@ -132,7 +132,7 @@ public class ProjectRequest {
|
|||
|
||||
@Parameter(
|
||||
description = "Retrieve debug information for the search query",
|
||||
schema = @Schema(type = "boolean", defaultValue = "true")
|
||||
schema = @Schema(type = "boolean", defaultValue = "false")
|
||||
)
|
||||
private Boolean debugQuery = false;
|
||||
|
||||
|
|
|
@ -288,7 +288,7 @@ public class ResearchProductsRequest {
|
|||
|
||||
@Parameter(
|
||||
description = "Retrieve debug information for the search query",
|
||||
schema = @Schema(type = "boolean", defaultValue = "true")
|
||||
schema = @Schema(type = "boolean", defaultValue = "false")
|
||||
)
|
||||
private Boolean debugQuery= false;
|
||||
|
||||
|
|
Loading…
Reference in New Issue