<@UA0CRPC0N> As per the document " the associated...
# general
g
@Mustafa As per the document " the associated 'dirty' query is blacklisted from running for 24 hours. " How can I reset this for my testing purpose to run that query in next session?
m
hmm. i wonder if using --disable_watchdog=true a solution for this or i don’t know what the answer is
d
You can set
"blacklist": false
in the query object in your pack.
E.G. -
Copy code
"windows_programs": {
      "query": "SELECT name, version, language, install_source, publisher, identifying_number, install_date FROM programs;",
      "interval": 14400,
      "removed": false,
      "blacklist": false,
      "description": "Get all the installed programs on the target machine.",
      "platform": "windows"
    }
g
yes "blacklist": false attribute seems to be working
👍 1
m
is there a place where all of these key value explained? or in other word what is the whole list of these key value matching?