Skip to content

Commit

Permalink
Fixed types casting in arguments passing from CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
blackandred committed Jun 28, 2019
1 parent b1cc713 commit 6719e64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
CHANGES
=======

* Fixed types casting in arguments passing from CLI
* Hotfix: Fixed 503 on HTTP caused by missing new params
* Updated suggestion in reference in docs
* Added --lazy flag
Expand Down
2 changes: 1 addition & 1 deletion infracheck/infracheck/bin.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def main():
project_dir = parsed.directory if parsed.directory else os.getcwd()
server_port = int(parsed.server_port if parsed.server_port else 7422)
server_path_prefix = parsed.server_path_prefix if parsed.server_path_prefix else ''
wait_time = int(parsed.wait_time)
wait_time = int(parsed.wait)

app = Controller(project_dir, server_port, server_path_prefix,
parsed.db_path, wait_time, parsed.lazy, parsed.force)
Expand Down

0 comments on commit 6719e64

Please sign in to comment.