Skip to content

Commit

Permalink
Merge pull request #117 from hautof/dev-2.3.0
Browse files Browse the repository at this point in the history
sqlpublish 0.0.2 support app case now
  • Loading branch information
tsbxmw authored Mar 11, 2019
2 parents 674c517 + 6033f28 commit d32c87c
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 208 deletions.
Binary file added docs/png/haf-publish-old.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/png/haf-publish.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions haf/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@

MAIN_VERSION = 2
SUB_VERSION = 6
FIX_VERSION = 0
VERSION_TYPE = "dev"
FIX_VERSION = 1
VERSION_TYPE = "haf"
PLATFORM_VERSION = f"{VERSION_TYPE}-{MAIN_VERSION}.{SUB_VERSION}.{FIX_VERSION}"

BANNER_STRS = f"""
Expand Down
204 changes: 0 additions & 204 deletions haf/ext/resource/sqlpublish/haf_publish.sql

This file was deleted.

2 changes: 1 addition & 1 deletion haf/program.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def _start_web_server(self, args):
if args.web_server:
try:
from hafapiserver.app import web_server
ws = Process(target=web_server, daemon=True)
ws = Process(target=web_server, args=(self.bus_client,), daemon=True)
ws.start()
except Exception as e:
logger.error("Plugin hafapiserver is not installed, using 'pip install hafapiserver -U' to install")
Expand Down
2 changes: 1 addition & 1 deletion haf/recorder.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def publish_to_mysql(self):
from hafsqlpublish.publish import Publish
import_ok = True
except Exception as e:
logger.error("Plugin hafsqlpublish is not installed, using 'pip install hafapiserver -U' to install")
logger.error("Plugin hafsqlpublish is not installed, using 'pip install hafsqlpublish -U' to install")
if import_ok:
publish = Publish(self.sql_config)
publish.publish_result(self.results)
Expand Down

0 comments on commit d32c87c

Please sign in to comment.