GH-1149 Remove condition on FunctionCatalog

It actually no longer required. It was added when certain other auto-configurations were present that are no longer exist, so effectively it was a leftover

Resolves #1149
This commit is contained in:
Oleg Zhurakousky
2024-07-09 12:29:01 +02:00
parent 980189db6f
commit d8e67c8df9
2 changed files with 2 additions and 1 deletions

View File

@@ -84,7 +84,6 @@ import org.springframework.util.StringUtils;
* @author Chris Bono
*/
@Configuration(proxyBeanMethods = false)
@ConditionalOnMissingBean(FunctionCatalog.class)
@EnableConfigurationProperties(FunctionProperties.class)
@AutoConfigureAfter(name = {"org.springframework.cloud.function.deployer.FunctionDeployerConfiguration"})
public class ContextFunctionCatalogAutoConfiguration {