Skip to content

Commit a006630

Browse files
committed
Updated default broadcast URL for inspect mode
1 parent f98801d commit a006630

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

flowcraft/flowcraft.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def get_args(args=None):
104104
help="Specify the inspection run mode."
105105
)
106106
inspect_parser.add_argument(
107-
"-u", "--url", dest="url", default="http://localhost:8000/",
107+
"-u", "--url", dest="url", default="http://192.92.149.169:80/",
108108
help="Specify the URL to where the data should be broadcast"
109109
)
110110
inspect_parser.add_argument(

flowcraft/generator/inspect.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def signal_handler(screen):
4242
curses.echo()
4343
curses.endwin()
4444

45-
print("Exiting assemblerflow inspection... Bye")
45+
print("Exiting flowcraft inspection... Bye")
4646
sys.exit(0)
4747

4848

@@ -195,11 +195,11 @@ def __init__(self, trace_file, refresh_rate, pretty=False, ip_addr=None):
195195
"""
196196

197197
if not ip_addr:
198-
self.app_address = "http://localhost:8000/"
198+
self.app_address = "http://192.92.149.169:80/"
199199
else:
200200
self.app_address = ip_addr
201201
"""
202-
str: Address of assemblerflow web app
202+
str: Address of flowcraft web app
203203
"""
204204

205205
self.broadcast_address = "{}inspect/api/status".format(
@@ -1380,7 +1380,7 @@ def _prepare_static_info(self):
13801380
with open(nf_config) as fh:
13811381
pipeline_files["configFile"] = fh.readlines()
13821382

1383-
# Check for specific assemblerflow configurations files
1383+
# Check for specific flowcraft configurations files
13841384
configs = {
13851385
"params.config": "paramsFile",
13861386
"resources.config": "resourcesFile",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="flowcraft",
12-
version="{}".format(VERSION),
12+
version="{}-1".format(VERSION),
1313
packages=["flowcraft",
1414
"flowcraft.templates",
1515
"flowcraft.templates.flowcraft_utils",

0 commit comments

Comments
 (0)