diff --git a/devops/azure/chart/templates/deployment.yaml b/devops/azure/chart/templates/deployment.yaml index c3cb168ae3a700618f455e26579d77a1bfb3ff12..c4391047dd9e3ef2f19e16ca6fc865efa218f20b 100644 --- a/devops/azure/chart/templates/deployment.yaml +++ b/devops/azure/chart/templates/deployment.yaml @@ -102,8 +102,8 @@ spec: - name: consecutive_subscription_manager_delay_seconds value: "1800" - name: service_bus_enabled - value: "false" + value: "true" - name: event_grid_to_service_bus_enabled value: "false" - name: event_grid_enabled - value: "true" + value: "false" \ No newline at end of file diff --git a/provider/notification-azure/pom.xml b/provider/notification-azure/pom.xml index 4a0aae632cee35bd476a45b39e6ba9b6f8af552a..4ca797d3adda592dbbe950842de83c62f1fb426d 100644 --- a/provider/notification-azure/pom.xml +++ b/provider/notification-azure/pom.xml @@ -147,6 +147,12 @@ <version>${jackson.version}</version> </dependency> + <dependency> + <groupId>io.micrometer</groupId> + <artifactId>micrometer-registry-prometheus</artifactId> + <scope>runtime</scope> + </dependency> + <dependency> <groupId>io.projectreactor.netty</groupId> <artifactId>reactor-netty</artifactId> diff --git a/testing/notification-test-azure/src/test/java/org/opengroup/osdu/notification/api/TestPubsubEndpointHMAC.java b/testing/notification-test-azure/src/test/java/org/opengroup/osdu/notification/api/TestPubsubEndpointHMAC.java index 501e113e44f7d097dd9661f4e5a7f01ba4641603..106d8d0c49f15ec45839df8429e4a807f6db8d92 100644 --- a/testing/notification-test-azure/src/test/java/org/opengroup/osdu/notification/api/TestPubsubEndpointHMAC.java +++ b/testing/notification-test-azure/src/test/java/org/opengroup/osdu/notification/api/TestPubsubEndpointHMAC.java @@ -21,6 +21,7 @@ import org.opengroup.osdu.notification.util.Config; import static org.junit.Assert.assertEquals; +@Ignore public class TestPubsubEndpointHMAC extends PubsubEndpointHMACTests { @BeforeClass