mirror of
https://github.com/google/nomulus
synced 2026-02-05 12:31:15 +00:00
Don't add all claims data to NORDN verify task
This claims data can exceed the maximum size of a task, causing the NORDN upload to error out. It also wasn't even being used anyway. This data is already logged during the upload and there's no reason to log it as well during the verify, because there is already a unique actionLogId that can be used to tie the verify task back to the upload task. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=196521160
This commit is contained in:
@@ -64,10 +64,4 @@ public final class TmchModule {
|
||||
static String provideActionLogId(HttpServletRequest req) {
|
||||
return extractRequiredHeader(req, NordnVerifyAction.HEADER_ACTION_LOG_ID);
|
||||
}
|
||||
|
||||
@Provides
|
||||
@Parameter(NordnVerifyAction.PARAM_CSV_DATA)
|
||||
static String provideCsvData(HttpServletRequest req) {
|
||||
return extractRequiredParameter(req, NordnVerifyAction.PARAM_CSV_DATA);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user