Skip to content

Commit 9513ce7

Browse files
committed
Temporarily disable LED hook
1 parent cb8572b commit 9513ce7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

anonymizer/OpenDiffix.Service/Program.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ let handlePreview
108108
let mutable starBucket: Bucket option = None
109109
let starBucketHook = AggregationHooks.StarBucket.hook (fun bucket -> starBucket <- Some bucket)
110110

111-
let result = runQuery [ ledHook; starBucketHook ] query inputPath anonParams
111+
let result = runQuery [ (* ledHook; *) starBucketHook ] query inputPath anonParams
112112

113113
// Should be set once the query completes.
114114
let starBucket = starBucket |> unwrapOption "Star bucket should be evaluated at this point."
@@ -189,7 +189,7 @@ let handleExport
189189
HAVING NOT diffix_low_count(%s{aidColumn})
190190
"""
191191

192-
let output = anonParams |> runQuery [ ledHook ] query inputPath |> csvFormatter
192+
let output = anonParams |> runQuery [ (* ledHook; *) ] query inputPath |> csvFormatter
193193

194194
File.WriteAllText(outputPath, output)
195195

0 commit comments

Comments
 (0)