mirror of
https://github.com/google/nomulus.git
synced 2025-05-29 08:50:09 +02:00
Fix RDE reducer broken in []
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=230945703
This commit is contained in:
parent
4213e9246c
commit
5a8760570c
1 changed files with 7 additions and 8 deletions
|
@ -240,15 +240,14 @@ public final class RdeStagingReducer extends Reducer<PendingDeposit, DepositFrag
|
||||||
|
|
||||||
/** Injectible factory for creating {@link RdeStagingReducer}. */
|
/** Injectible factory for creating {@link RdeStagingReducer}. */
|
||||||
static class Factory {
|
static class Factory {
|
||||||
TaskQueueUtils taskQueueUtils;
|
@Inject TaskQueueUtils taskQueueUtils;
|
||||||
LockHandler lockHandler;
|
@Inject LockHandler lockHandler;
|
||||||
@Config("gcsBufferSize") int gcsBufferSize;
|
@Inject @Config("gcsBufferSize") int gcsBufferSize;
|
||||||
@Config("rdeBucket") String bucket;
|
@Inject @Config("rdeBucket") String bucket;
|
||||||
@Config("rdeStagingLockTimeout") Duration lockTimeout;
|
@Inject @Config("rdeStagingLockTimeout") Duration lockTimeout;
|
||||||
@KeyModule.Key("rdeStagingEncryptionKey") byte[] stagingKeyBytes;
|
@Inject @KeyModule.Key("rdeStagingEncryptionKey") byte[] stagingKeyBytes;
|
||||||
|
|
||||||
@Inject
|
@Inject Factory() {}
|
||||||
Factory() {}
|
|
||||||
|
|
||||||
RdeStagingReducer create(ValidationMode validationMode) {
|
RdeStagingReducer create(ValidationMode validationMode) {
|
||||||
return new RdeStagingReducer(
|
return new RdeStagingReducer(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue