disable throtlling

Bug: 21501401
diff --git a/gatekeeper.cpp b/gatekeeper.cpp
index f18a490..8c36666 100644
--- a/gatekeeper.cpp
+++ b/gatekeeper.cpp
@@ -42,7 +42,8 @@
 
         uint64_t timestamp = GetMillisecondsSinceBoot();
 
-        bool throttle = true;
+        // disabled
+        bool throttle = false;
         if (pw_handle->version == 0) {
             // handle version is pre-throttling
             throttle = false;
@@ -111,7 +112,8 @@
     password_handle_t *password_handle = reinterpret_cast<password_handle_t *>(
             request.password_handle.buffer.get());
 
-    bool throttle = true;
+    // disabled
+    bool throttle = false;
     if (password_handle->version == 0) {
         // handle version is pre-throttling
         throttle = false;