Skip to content

doc issue: backing app timeouts are not configureable per app #288

Open
@gberche-orange

Description

@gberche-orange

The documentation mentions that timeouts such as api-timeout can be set for a specific app deployment

The following table lists properties that can be set for all or specific app deployments.

|`api-timeout`
|The timeout value used for blocking API calls, in seconds.
|`360`

However, the timeout seems always fetched from a singleton bean

CloudFoundryDeploymentProperties cloudFoundryDeploymentProperties() {
return new CloudFoundryDeploymentProperties();
}
@Bean
@ConfigurationProperties(PROPERTY_PREFIX)
CloudFoundryTargetProperties cloudFoundryTargetProperties() {
return new CloudFoundryTargetProperties();
}
@Bean
AppDeployer cloudFoundryAppDeployer(CloudFoundryDeploymentProperties deploymentProperties,
CloudFoundryOperations cloudFoundryOperations,
CloudFoundryClient cloudFoundryClient,
CloudFoundryOperationsUtils operationsUtils,
CloudFoundryTargetProperties targetProperties,
ResourceLoader resourceLoader) {
return new CloudFoundryAppDeployer(deploymentProperties, cloudFoundryOperations, cloudFoundryClient,
operationsUtils, targetProperties, resourceLoader);
}

Metadata

Metadata

Assignees

Labels

bugSomething isn't workingdocs

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions