Fixed condition for spring.cloud.function.web.export.enabled property
This commit is contained in:
@@ -52,8 +52,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||
"spring.cloud.function.web.export.sink.url=http://localhost:${my.port}",
|
||||
"spring.cloud.function.web.export.source.url=http://localhost:${my.port}",
|
||||
"spring.cloud.function.web.export.sink.name=origin|uppercase",
|
||||
"spring.cloud.function.web.export.debug=true",
|
||||
"spring.cloud.function.web.export.enabled=true" })
|
||||
"spring.cloud.function.web.export.debug=true" })
|
||||
public class FunctionalExporterTests {
|
||||
|
||||
@Autowired
|
||||
|
||||
@@ -56,9 +56,9 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||
ApplicationConfiguration.class }, webEnvironment = WebEnvironment.DEFINED_PORT, properties = {
|
||||
"spring.cloud.function.web.export.sink.url=http://localhost:${server.port}",
|
||||
"spring.cloud.function.web.export.source.url=http://localhost:${server.port}",
|
||||
"spring.cloud.function.web.export.sink.name=origin|uppercase",
|
||||
// "spring.cloud.function.web.export.debug=true",
|
||||
"spring.cloud.function.web.export.enabled=true" })
|
||||
"spring.cloud.function.web.export.sink.name=origin|uppercase"
|
||||
// "spring.cloud.function.web.export.debug=true"
|
||||
})
|
||||
public class FunctionAutoConfigurationIntegrationTests {
|
||||
|
||||
@Autowired
|
||||
|
||||
@@ -56,8 +56,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||
"spring.cloud.function.web.export.sink.url=http://localhost:${server.port}",
|
||||
"spring.cloud.function.web.export.source.url=http://localhost:${server.port}",
|
||||
"spring.cloud.function.web.export.sink.name=origin|uppercase",
|
||||
"spring.cloud.function.web.export.debug=true",
|
||||
"spring.cloud.function.web.export.enabled=true" })
|
||||
"spring.cloud.function.web.export.debug=true"})
|
||||
public class FunctionAutoConfigurationWithRetriesIntegrationTests {
|
||||
|
||||
@Autowired
|
||||
|
||||
@@ -54,8 +54,6 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||
webEnvironment = WebEnvironment.DEFINED_PORT, properties = {
|
||||
"spring.main.web-application-type=reactive",
|
||||
"spring.cloud.function.web.export.sink.url=http://localhost:${server.port}/values",
|
||||
// in a webapp we have to explicitly enable the export
|
||||
"spring.cloud.function.web.export.enabled=true",
|
||||
// manually so we know the webapp is listening when we start
|
||||
"spring.cloud.function.web.export.autoStartup=false" })
|
||||
public class WebAppIntegrationTests {
|
||||
|
||||
Reference in New Issue
Block a user