Skip to content

Commit

Permalink
Align profile names with new restrictions
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkinsona committed Jan 15, 2025
1 parent b75006b commit eef61c2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ void appProducesAndConsumesMessages(CapturedOutput output) {

@Nested
@SpringBootTest
@ActiveProfiles("smoketest.pulsar.imperative")
@ActiveProfiles("smoketest-pulsar-imperative")
class ImperativePulsarApplication extends PulsarApplication {

ImperativePulsarApplication() {
Expand All @@ -80,7 +80,7 @@ class ImperativePulsarApplication extends PulsarApplication {

@Nested
@SpringBootTest
@ActiveProfiles("smoketest.pulsar.reactive")
@ActiveProfiles("smoketest-pulsar-reactive")
class ReactivePulsarApplication extends PulsarApplication {

ReactivePulsarApplication() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import org.springframework.pulsar.core.PulsarTopicBuilder;

@Configuration(proxyBeanMethods = false)
@Profile("smoketest.pulsar.imperative")
@Profile("smoketest-pulsar-imperative")
class ImperativeAppConfig {

private static final Log logger = LogFactory.getLog(ImperativeAppConfig.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import org.springframework.pulsar.reactive.core.ReactivePulsarTemplate;

@Configuration(proxyBeanMethods = false)
@Profile("smoketest.pulsar.reactive")
@Profile("smoketest-pulsar-reactive")
class ReactiveAppConfig {

private static final Log logger = LogFactory.getLog(ReactiveAppConfig.class);
Expand Down

0 comments on commit eef61c2

Please sign in to comment.