diff --git a/Scheduler_IronScales/function.json b/Scheduler_IronScales/function.json index e5aa755db425..77066171995a 100644 --- a/Scheduler_IronScales/function.json +++ b/Scheduler_IronScales/function.json @@ -2,15 +2,9 @@ "bindings": [ { "name": "Timer", - "schedule": "0 */30 * * * *", + "schedule": "0 */5 * * * *", "direction": "in", "type": "timerTrigger" - }, - { - "name": "QueueItem", - "type": "queueTrigger", - "direction": "in", - "queueName": "phishingqueue" } ] } diff --git a/Scheduler_IronScales/run.ps1 b/Scheduler_IronScales/run.ps1 index a8ec3118ac63..eedd02ff5261 100644 --- a/Scheduler_IronScales/run.ps1 +++ b/Scheduler_IronScales/run.ps1 @@ -1,5 +1,5 @@ # Input bindings are passed in via param block. -param($Timer, $QueueItem) +param($Timer) try { Write-LogMessage -API "Scheduler_IronScales" -tenant "none" -message "Starting IronScales processing." -sev Info