From e0996f4aa0941cd146dca9d7fcf949e3151302d9 Mon Sep 17 00:00:00 2001 From: Tanner Prestegard <tanner.prestegard@ligo.org> Date: Wed, 6 Feb 2019 09:18:54 -0600 Subject: [PATCH] Rearrange and update API throttles --- gracedb/api/{v1/throttles.py => throttling.py} | 0 gracedb/api/v1/events/{throttles.py => throttling.py} | 2 +- gracedb/api/v2/events/throttles.py | 1 - gracedb/api/v2/events/throttling.py | 1 + gracedb/api/v2/throttles.py | 1 - 5 files changed, 2 insertions(+), 3 deletions(-) rename gracedb/api/{v1/throttles.py => throttling.py} (100%) rename gracedb/api/v1/events/{throttles.py => throttling.py} (75%) delete mode 100644 gracedb/api/v2/events/throttles.py create mode 100644 gracedb/api/v2/events/throttling.py delete mode 100644 gracedb/api/v2/throttles.py diff --git a/gracedb/api/v1/throttles.py b/gracedb/api/throttling.py similarity index 100% rename from gracedb/api/v1/throttles.py rename to gracedb/api/throttling.py diff --git a/gracedb/api/v1/events/throttles.py b/gracedb/api/v1/events/throttling.py similarity index 75% rename from gracedb/api/v1/events/throttles.py rename to gracedb/api/v1/events/throttling.py index 3e40b639c..66332e5b4 100644 --- a/gracedb/api/v1/events/throttles.py +++ b/gracedb/api/v1/events/throttling.py @@ -1,4 +1,4 @@ -from ..throttles import PostOrPutUserRateThrottle +from api.throttling import PostOrPutUserRateThrottle class EventCreationThrottle(PostOrPutUserRateThrottle): diff --git a/gracedb/api/v2/events/throttles.py b/gracedb/api/v2/events/throttles.py deleted file mode 100644 index 299f54d1f..000000000 --- a/gracedb/api/v2/events/throttles.py +++ /dev/null @@ -1 +0,0 @@ -from ...v1.events.throttles import * diff --git a/gracedb/api/v2/events/throttling.py b/gracedb/api/v2/events/throttling.py new file mode 100644 index 000000000..20bc592cb --- /dev/null +++ b/gracedb/api/v2/events/throttling.py @@ -0,0 +1 @@ +from ...v1.events.throttling import * diff --git a/gracedb/api/v2/throttles.py b/gracedb/api/v2/throttles.py deleted file mode 100644 index 65db9d365..000000000 --- a/gracedb/api/v2/throttles.py +++ /dev/null @@ -1 +0,0 @@ -from ..v1.throttles import * -- GitLab