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:
mcilwain 2018-05-14 09:50:52 -07:00 committed by jianglai
parent c25f765fc5
commit de5645abd9
5 changed files with 5 additions and 30 deletions

View file

@ -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);
}
}