-
Notifications
You must be signed in to change notification settings - Fork 13
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
I find that the app ignores the directive index_stats=0
the app sets the flag to 0 or 1, and at line 120 in azure_kql.py if tests this as
if (index_stats):
headers = {
"Prefer": "include-statistics=true"
}
this fires regardless of the status of the directive.
the following is crude but works:
if index_stats=="1" or index_stats.upper()=="TRUE":
headers = {
"Prefer": "include-statistics=true"
}
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working