1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-06 13:22:32 +01:00

resource: remote resource resolution fixes

- "remote" getter priority reduced to be below "environment" so that
  resouces placed into "~/.workload_automation/dependencies" by the user
  take priority over those pulled from remote locations.
- "filer" getter now uses a cache location for the resource rather than
  downloading to the local resource location.
This commit is contained in:
Sergei Trofimov
2017-02-21 16:35:16 +00:00
parent 96c6f010f8
commit 6e7087ee88
2 changed files with 3 additions and 2 deletions

View File

@@ -38,8 +38,8 @@ class GetterPriority(object):
"""
cached = 20
preferred = 10
remote = 5
environment = 0
remote = -4
external_package = -5
package = -10