Skip to content
This repository has been archived by the owner on Nov 19, 2020. It is now read-only.

Configuration pod isn't ready until all dependencies can be injected. #141

Merged
merged 1 commit into from Oct 8, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/main/java/com/openlattice/indexing/Indexer.java
Expand Up @@ -39,6 +39,7 @@
import com.openlattice.postgres.PostgresPod;
import com.openlattice.postgres.PostgresTablesPod;
import com.openlattice.postgres.pods.ExternalDatabaseConnectionManagerPod;
import com.openlattice.transporter.TransporterConfigurationPod;
import com.openlattice.transporter.pods.TransporterPod;

/**
Expand All @@ -61,7 +62,8 @@ public class Indexer extends BaseRhizomeServer {
PostgresPod.class,
PostgresTablesPod.class,
SharedStreamSerializersPod.class,
TransporterPod.class
TransporterPod.class,
TransporterConfigurationPod.class
};

private static final Class<?>[] webPods = new Class<?>[]{ IndexerServletsPod.class, IndexerSecurityPod.class };
Expand Down