Config property for validate resource status (#746)
* Added configuration property for validate_resource_status_for_package_upload * Added new parameter to test config file * Fixed merge issue
This commit is contained in:
@@ -80,6 +80,7 @@ public class AppProperties {
|
||||
private Subscription subscription = new Subscription();
|
||||
private Cors cors = null;
|
||||
private Partitioning partitioning = null;
|
||||
private Boolean validate_resource_status_for_package_upload = true;
|
||||
private Boolean install_transitive_ig_dependencies = true;
|
||||
private Map<String, PackageInstallationSpec> implementationGuides = null;
|
||||
|
||||
@@ -589,6 +590,14 @@ public Cors getCors() {
|
||||
this.install_transitive_ig_dependencies = install_transitive_ig_dependencies;
|
||||
}
|
||||
|
||||
public Boolean getValidate_resource_status_for_package_upload() {
|
||||
return validate_resource_status_for_package_upload;
|
||||
}
|
||||
|
||||
public void setValidate_resource_status_for_package_upload(Boolean validate_resource_status_for_package_upload) {
|
||||
this.validate_resource_status_for_package_upload = validate_resource_status_for_package_upload;
|
||||
}
|
||||
|
||||
public Integer getBundle_batch_pool_size() {
|
||||
return this.bundle_batch_pool_size;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user