Skip to content
Snippets Groups Projects
Commit 492a639c authored by Yurii Ruban [EPAM / GCP]'s avatar Yurii Ruban [EPAM / GCP]
Browse files

Removed api point

parent 97f727cc
No related branches found
No related tags found
1 merge request!561GC\CI - Disable PubSub push endpoint.
Pipeline #314405 failed
......@@ -16,14 +16,22 @@
package org.opengroup.osdu.notification;
import org.opengroup.osdu.notification.api.PubsubEndpoint;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.FilterType;
import org.springframework.context.annotation.PropertySource;
import org.springframework.scheduling.annotation.EnableAsync;
@SpringBootApplication
@ComponentScan(value = {"org.opengroup.osdu"})
@ComponentScan(value = {"org.opengroup.osdu"}, excludeFilters = {
@ComponentScan.Filter(
type = FilterType.ASSIGNABLE_TYPE,
value = {
PubsubEndpoint.class
})
})
@EnableAsync
@PropertySource("classpath:swagger.properties")
public class CorePlusApplication {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment