Skip to content

Commit

Permalink
Don't add migrations to the forwarder bindings (#1167)
Browse files Browse the repository at this point in the history
As you can see on the comment on top of configureUniversalBindings(),
the forwarder does not have MongoDB.

Refs #1163
  • Loading branch information
mpfz0r authored Sep 8, 2022
1 parent d34569a commit 8bf685f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,9 @@ private void configureServerOnlyBindings() {
GreyNoiseCommunityIpLookupAdapter.class,
GreyNoiseCommunityIpLookupAdapter.Factory.class,
GreyNoiseCommunityIpLookupAdapter.Config.class);

// PagerDuty notification type fix
addMigration(V20220622071600_MigratePagerDutyV1.class);
}
}

Expand Down Expand Up @@ -177,9 +180,6 @@ private void configureUniversalBindings() {
bind(IamClientBuilder.class).toProvider(IamClient::builder);
bind(CloudWatchLogsClientBuilder.class).toProvider(CloudWatchLogsClient::builder);
bind(KinesisClientBuilder.class).toProvider(KinesisClient::builder);

// PagerDuty notification type fix
addMigration(V20220622071600_MigratePagerDutyV1.class);
}

/**
Expand Down

0 comments on commit 8bf685f

Please sign in to comment.