diff options
author | Shrenik <shrenik.jain@research.iiit.ac.in> | 2018-08-17 00:28:40 +0530 |
---|---|---|
committer | Shrenik <shrenik.jain@research.iiit.ac.in> | 2018-08-17 00:28:40 +0530 |
commit | 5f84c19c4511da6706a501308b509aacbc6219de (patch) | |
tree | 56980b5ed9d42e3022a43aaad13e09aadd62e306 /docker/storperf-reporting | |
parent | 562e802575abc79598ed2ef58a837a146be644c4 (diff) |
Fix 3rd_party link in reportingopnfv-7.0.stable.RC4
Updates links to 3rd party resources in
reporting module. This fixes graphs not
being generated.
Change-Id: I8bdb37f3b6948bc2fd09a8cf3d0b0f1588cafaf0
JIRA: STORPERF-258
Signed-off-by: Shrenik <shrenik.jain@research.iiit.ac.in>
Diffstat (limited to 'docker/storperf-reporting')
-rw-r--r-- | docker/storperf-reporting/src/app.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/storperf-reporting/src/app.py b/docker/storperf-reporting/src/app.py index 9bd1a04..1c48eb0 100644 --- a/docker/storperf-reporting/src/app.py +++ b/docker/storperf-reporting/src/app.py @@ -130,12 +130,12 @@ def file_not_found(): @app.route('/reporting/3rd_party/js/<path:path>') def js(path): - return send_from_directory('static/js/', path) + return send_from_directory('static/3rd_party/js/', path) @app.route('/reporting/3rd_party/css/<path:path>') def css(path): - return send_from_directory('static/css/', path) + return send_from_directory('static/3rd_party/css/', path) @app.route('/reporting/images/<path:path>') |