Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request qca#5 from mattsm/prpl
Browse files Browse the repository at this point in the history
Fixes needed for Kibana publishing to work on prpl fork
  • Loading branch information
wwahammy authored Jul 22, 2016
2 parents 0c3b295 + 62badea commit b56f92d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bft
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,9 @@ def main():
else:
n = t.__class__.__name__
for k, v in t.logged.items():
info_for_remote_log[n + '.' + k] = v
info_for_remote_log[n + '-' + k] = v
if hasattr(t, 'result_grade'):
info_for_remote_log[n + ".result"] = t.result_grade
info_for_remote_log[n + "-result"] = t.result_grade

try:
if config.logging_server is not None:
Expand Down
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# Elasticsearch server. Data in JSON-format can be directly sent here.
# Set to None or to a valid host, see documentation:
# https://elasticsearch-py.readthedocs.org/en/master/api.html#elasticsearch
elasticsearch_server = None
elasticsearch_server = 'http://etc.prplfoundation.org:9200/'

# Code change server like gerrit, github, etc... Used only in display
# of the results html file to list links to code changes tested.
Expand Down

0 comments on commit b56f92d

Please sign in to comment.