How disable job without commenting rate

class SyncJob < ApplicationJob
  # rate "1 minute"
  def sync
  end
end

I commented rate “1 minute” to disable the worker.
Is there any way to disable running a worker?