From 0546bb4b358aecb9b1b4382aa5d3de5b4e723ef5 Mon Sep 17 00:00:00 2001
From: Garrett Spong <garrett.spong@elastic.co>
Date: Tue, 14 Jul 2020 13:59:57 -0600
Subject: [PATCH] Fixing type errors from merge with main

---
 .../lib/detection_engine/signals/build_events_query.test.ts     | 2 ++
 .../lib/detection_engine/signals/find_threshold_signals.ts      | 1 +
 2 files changed, 3 insertions(+)

diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/signals/build_events_query.test.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/signals/build_events_query.test.ts
index 0929e07507c6a..ccf8a9bec3159 100644
--- a/x-pack/plugins/security_solution/server/lib/detection_engine/signals/build_events_query.test.ts
+++ b/x-pack/plugins/security_solution/server/lib/detection_engine/signals/build_events_query.test.ts
@@ -303,6 +303,7 @@ describe('create_signals', () => {
       filter: {},
       size: 100,
       searchAfterSortId: undefined,
+      timestampOverride: undefined,
     });
     expect(query).toEqual({
       allowNoIndices: true,
@@ -381,6 +382,7 @@ describe('create_signals', () => {
       filter: {},
       size: 100,
       searchAfterSortId: undefined,
+      timestampOverride: undefined,
     });
     expect(query).toEqual({
       allowNoIndices: true,
diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/signals/find_threshold_signals.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/signals/find_threshold_signals.ts
index a9a199f210da0..251c043adb58b 100644
--- a/x-pack/plugins/security_solution/server/lib/detection_engine/signals/find_threshold_signals.ts
+++ b/x-pack/plugins/security_solution/server/lib/detection_engine/signals/find_threshold_signals.ts
@@ -50,6 +50,7 @@ export const findThresholdSignals = async ({
   return singleSearchAfter({
     aggregations,
     searchAfterSortId: undefined,
+    timestampOverride: undefined,
     index: inputIndexPattern,
     from,
     to,