spring-cloud / spring-cloud-deployer

The Spring Cloud Deployer project defines an SPI for deploying long lived applications and short lived tasks
162 stars 87 forks source link

CF Deployer needs to use LogCacheClient to retrieve logs #407

Closed cppwfs closed 10 months ago

cppwfs commented 1 year ago

According to the following issue: https://github.com/cloudfoundry/cf-java-client/issues/1181 We can no longer use the DopplerClient to retrieve logs. Rather we need to use the LogCacheClient to retrieve logs. The following code needs to be updated: https://github.com/spring-cloud/spring-cloud-deployer/blob/main/spring-cloud-deployer-cloudfoundry/src/main/java/org/springframework/cloud/deployer/spi/cloudfoundry/CloudFoundryTaskLauncher.java#L141 and https://github.com/spring-cloud/spring-cloud-deployer/blob/main/spring-cloud-deployer-cloudfoundry/src/main/java/org/springframework/cloud/deployer/spi/cloudfoundry/CloudFoundryAppDeployer.java#L216.

ilayaperumalg commented 10 months ago

This was addressed via #413