Skip to content

Commit

Permalink
Changes for 1.14 release
Browse files Browse the repository at this point in the history
  • Loading branch information
santanusinha committed Oct 18, 2024
1 parent f7aaf0a commit 6c92d64
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 10 deletions.
2 changes: 1 addition & 1 deletion epoch-models/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>epoch</artifactId>
<groupId>com.phonepe</groupId>
<version>1.15-SNAPSHOT</version>
<version>1.14</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion epoch-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>epoch</artifactId>
<groupId>com.phonepe</groupId>
<version>1.15-SNAPSHOT</version>
<version>1.14</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,8 @@
import com.google.inject.Guice;
import com.google.inject.Injector;
import com.google.inject.Module;
import com.phonepe.epoch.server.config.AppConfig;
import com.phonepe.epoch.server.managed.Scheduler;
import com.phonepe.epoch.server.mocks.MockTaskExecutionEngine;
import com.phonepe.olympus.im.client.OlympusIMBundle;
import com.phonepe.olympus.im.client.OlympusIMClient;
import io.dropwizard.jersey.DropwizardResourceConfig;
import io.dropwizard.jersey.setup.JerseyEnvironment;
import io.dropwizard.lifecycle.Managed;
Expand Down Expand Up @@ -45,7 +42,6 @@ public abstract class E2ETestBase {

private static final Bootstrap<?> bootstrap = mock(Bootstrap.class);
private static final AdminEnvironment adminEnvironment = mock(AdminEnvironment.class);
private final OlympusIMBundle<AppConfig> olympusIMBundle = mock(OlympusIMBundle.class);
protected Injector injector;
protected ObjectMapper mapper;
protected MockTaskExecutionEngine taskExecutionEngine = new MockTaskExecutionEngine();
Expand All @@ -66,9 +62,6 @@ public void setUp() throws Exception {
when(environment.lifecycle()).thenReturn(lifecycleEnvironment);
when(environment.healthChecks()).thenReturn(healthChecks);
when(environment.admin()).thenReturn(adminEnvironment);
OlympusIMClient olympusIMClient = mock(OlympusIMClient.class);
when(olympusIMClient.getSystemAuthHeader()).thenReturn("testHeader");
when(olympusIMBundle.getOlympusIMClient()).thenReturn(olympusIMClient);

when(bootstrap.getHealthCheckRegistry())
.thenReturn(Mockito.mock(HealthCheckRegistry.class));
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>com.phonepe</groupId>
<artifactId>epoch</artifactId>
<packaging>pom</packaging>
<version>1.15-SNAPSHOT</version>
<version>1.14</version>
<modules>
<module>epoch-models</module>
<module>epoch-server</module>
Expand Down

0 comments on commit 6c92d64

Please sign in to comment.