mirror of
https://github.com/google/nomulus.git
synced 2025-05-12 22:38:16 +02: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:
parent
c25f765fc5
commit
de5645abd9
5 changed files with 5 additions and 30 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue