Skip to content

Commit

Permalink
corrects 285 with a default value of 1-1-1970 (Unix TS of 0)
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveMcGrath committed Aug 12, 2024
1 parent f2069f8 commit 664e1b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tenb2jira/tenable/generators.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def tsc_merged_data(*vuln_iters: 'AnalysisResultsIterator',
astr = ':'.join([f'{f[i]}' for i in uniqa])
f['asset.uuid'] = uuid.uuid3(uuid.NAMESPACE_DNS, astr)
f['integration_finding_id'] = uuid.uuid3(uuid.NAMESPACE_DNS, fstr)
f['integration_pid_updated'] = arrow.get(int(f.get('pluginModDate')))
f['integration_pid_updated'] = arrow.get(int(f.get('pluginModDate', 0)))

# Return the augmented finding to the caller.
yield f

0 comments on commit 664e1b7

Please sign in to comment.