Skip to content

Commit

Permalink
Qualys jobs schedule changed to run daily instead of hourly run
Browse files Browse the repository at this point in the history
  • Loading branch information
sajeer-nooh committed Oct 11, 2019
1 parent 522c22f commit 3e3ca6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions installer/resources/lambda_submit/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ class CloudNotificationCollectorCloudWatchEventTarget(CloudWatchEventTargetResou

class QualysKBCollectorEventRule(CloudWatchEventRuleResource):
name = "qualys-kb-collector"
schedule_expression = "cron(0 * * * ? *)"
schedule_expression = "cron(0 0 * * ? *)"

DEPENDS_ON = [SubmitJobLambdaFunction]
PROCESS = need_to_deploy_vulnerability_service()
Expand Down Expand Up @@ -242,7 +242,7 @@ class QualysKBCollectorCloudWatchEventTarget(CloudWatchEventTargetResource):

class QualysAssetDataImporterEventRule(CloudWatchEventRuleResource):
name = "qualys-asset-data-importer"
schedule_expression = "cron(10 * * * ? *)"
schedule_expression = "cron(0 1 * * ? *)"

DEPENDS_ON = [SubmitJobLambdaFunction]
PROCESS = need_to_deploy_vulnerability_service()
Expand Down

0 comments on commit 3e3ca6b

Please sign in to comment.