Skip to content

Commit

Permalink
Passing api tests with sentry monitor.
Browse files Browse the repository at this point in the history
  • Loading branch information
ABPLMC committed Mar 4, 2024
1 parent f1e6c4e commit 36f8cc6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions api/datalake_api/v0.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ def _copy_immutable_dict(d):
return {k: v for k, v in d.items()}


@v0.route('/archive/files/')
@monitor_performance()
@v0.route('/archive/files/')
def files_get():
'''List files
Expand Down Expand Up @@ -477,7 +477,6 @@ def _validate_latest_params(params):


@v0.route('/archive/latest/<what>/<where>')
@monitor_performance()
def latest_get(what, where):
'''Retrieve the latest file for a give what and where
Expand Down Expand Up @@ -529,7 +528,6 @@ def latest_get(what, where):


@v0.route('/archive/latest/<what>/<where>/data')
@monitor_performance
def latest_get_contents(what, where):
'''Retrieve the latest file data for a given what and where
Expand Down

0 comments on commit 36f8cc6

Please sign in to comment.