Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1784)

Unified Diff: server/site_host_attributes.py

Issue 3454023: autotest: Test new meta files in crash directory (Closed) Base URL: http://git.chromium.org/git/autotest.git
Patch Set: Fix bug Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: server/site_host_attributes.py
diff --git a/server/site_host_attributes.py b/server/site_host_attributes.py
index d74fea64e81f7f9f8955160c293869cc19583907..981eb0a5fc50ab2b8693772bc5c512b2bb13952b 100644
--- a/server/site_host_attributes.py
+++ b/server/site_host_attributes.py
@@ -78,7 +78,10 @@ class HostAttributes(object):
the AFE models if they can be found.
"""
self._add_attributes(_DEFAULT_ATTRIBUTES)
+ if private_host_attributes is not None:
+ logging.info('Using your private_host_attributes file')
if host in private_host_attributes:
+ logging.info('Using private_host_attributes file for %s' % host)
self._add_attributes(private_host_attributes[host])
if has_models:
host_obj = models.Host.valid_objects.get(hostname=host)

Powered by Google App Engine
This is Rietveld 408576698