Skip to content

Commit

Permalink
Merge pull request #341 from sajeer-nooh/change_job_schedule
Browse files Browse the repository at this point in the history
Qualys jobs schedule changed to run daily instead of hourly run
  • Loading branch information
kaykumar authored Oct 11, 2019
2 parents 522c22f + 3e3ca6b commit ac96c39
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 ac96c39

Please sign in to comment.