Skip to content

Commit

Permalink
Core: Fix backwards compatibility for account usage and limits; Fix r…
Browse files Browse the repository at this point in the history
  • Loading branch information
bari12 committed Dec 3, 2019
1 parent 1b7e15f commit f9674e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/rucio/web/rest/webpy/v1/account.py
Expand Up @@ -69,7 +69,7 @@
'/(.+)/usage/local/(.+)', 'LocalUsage',
'/(.+)/usage/global', 'GlobalUsage',
'/(.+)/usage/global/(.+)', 'GlobalUsage',
'/(.+)/usage', 'LocalUsage',
'/(.+)/usage/', 'LocalUsage',
'/(.+)/usage/(.+)', 'LocalUsage',
'/(.+)', 'AccountParameter',
'/?$', 'Account',
Expand Down
3 changes: 2 additions & 1 deletion lib/rucio/web/rest/webpy/v1/account_limit.py
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
#
# Authors:
# - Martin Barisits <martin.barisits@cern.ch>, 2014
# - Martin Barisits <martin.barisits@cern.ch>, 2014-2019
# - Vincent Garonne <vincent.garonne@cern.ch>, 2017
# - Mario Lassnig <mario.lassnig@cern.ch>, 2018
# - Hannes Hansen <hannes.jakob.hansen@cern.ch>, 2018-2019
Expand All @@ -41,6 +41,7 @@
URLS = (
'/local/(.+)/(.+)', 'LocalAccountLimit',
'/global/(.+)/(.+)', 'GlobalAccountLimit',
'/(.+)/(.+)', 'LocalAccountLimit',
)


Expand Down

0 comments on commit f9674e9

Please sign in to comment.