Change `ScheduledApnPushNotificationSenderServiceCommand` to extend `ServerCommand`

This commit is contained in:
Chris Eager 2023-05-30 09:43:59 -05:00 committed by Chris Eager
parent dd552e8e8f
commit f17de58a71
1 changed files with 4 additions and 2 deletions

View File

@ -8,7 +8,7 @@ package org.whispersystems.textsecuregcm.workers;
import static com.codahale.metrics.MetricRegistry.name; import static com.codahale.metrics.MetricRegistry.name;
import io.dropwizard.Application; import io.dropwizard.Application;
import io.dropwizard.cli.EnvironmentCommand; import io.dropwizard.cli.ServerCommand;
import io.dropwizard.setup.Environment; import io.dropwizard.setup.Environment;
import java.util.Optional; import java.util.Optional;
import java.util.concurrent.ExecutorService; import java.util.concurrent.ExecutorService;
@ -23,7 +23,7 @@ import org.whispersystems.textsecuregcm.redis.FaultTolerantRedisCluster;
import org.whispersystems.textsecuregcm.storage.DynamicConfigurationManager; import org.whispersystems.textsecuregcm.storage.DynamicConfigurationManager;
import org.whispersystems.textsecuregcm.util.logging.UncaughtExceptionHandler; import org.whispersystems.textsecuregcm.util.logging.UncaughtExceptionHandler;
public class ScheduledApnPushNotificationSenderServiceCommand extends EnvironmentCommand<WhisperServerConfiguration> { public class ScheduledApnPushNotificationSenderServiceCommand extends ServerCommand<WhisperServerConfiguration> {
private static final String WORKER_COUNT = "workers"; private static final String WORKER_COUNT = "workers";
@ -78,6 +78,8 @@ public class ScheduledApnPushNotificationSenderServiceCommand extends Environmen
environment.lifecycle().manage(apnSender); environment.lifecycle().manage(apnSender);
environment.lifecycle().manage(apnPushNotificationScheduler); environment.lifecycle().manage(apnPushNotificationScheduler);
super.run(environment, namespace, configuration);
} }
} }