Skip to content

Commit ab3d5fa

Browse files
Default address change for flowcraft service (#151)
* changed the default ip for flowcraft webapp service * Updated changelog
1 parent e984aee commit ab3d5fa

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ resolution
1616
- Added removal of duplicate IDs from `reads_download` component input.
1717
- Added seed parameter to `downsample_fastq` component.
1818
- Added default docker option to avoid docker permission errors.
19+
- Changed the default URL generated by inspect and report commands.
1920

2021
### Bug fixes
2122

docs/user/basic_usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ Local visualization
393393
:::::::::::::::::::
394394

395395
The FlowCraft report JSON file can also be visualized locally by drag and dropping
396-
it into the FlowCraft web application page, currently hosted at http://192.92.149.169/reports
396+
it into the FlowCraft web application page, currently hosted at http://www.flowcraft.live/reports
397397

398398
Offline visualization
399399
:::::::::::::::::::::

flowcraft/flowcraft.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def get_args(args=None):
130130
help="Specify the inspection run mode."
131131
)
132132
inspect_parser.add_argument(
133-
"-u", "--url", dest="url", default="http://192.92.149.169:80/",
133+
"-u", "--url", dest="url", default="http://www.flowcraft.live:80/",
134134
help="Specify the URL to where the data should be broadcast"
135135
)
136136
inspect_parser.add_argument(
@@ -148,7 +148,7 @@ def get_args(args=None):
148148
help="Specify the path to the pipeline report JSON file."
149149
)
150150
reports_parser.add_argument(
151-
"-u", "--url", dest="url", default="http://192.92.149.169:80/",
151+
"-u", "--url", dest="url", default="http://www.flowcraft.live:80/",
152152
help="Specify the URL to where the data should be broadcast"
153153
)
154154
reports_parser.add_argument(

flowcraft/generator/inspect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def __init__(self, trace_file, refresh_rate, pretty=False, ip_addr=None):
196196
"""
197197

198198
if not ip_addr:
199-
self.app_address = "http://192.92.149.169:80/"
199+
self.app_address = "http://www.flowcraft.live:80/"
200200
else:
201201
self.app_address = ip_addr
202202
"""

flowcraft/generator/report.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def __init__(self, report_file, trace_file=None, log_file=None,
4242
"""
4343

4444
if not ip_addr:
45-
self.app_address = "http://192.92.149.169:80/"
45+
self.app_address = "http://www.flowcraft.live:80/"
4646
else:
4747
self.app_address = ip_addr
4848
"""

0 commit comments

Comments
 (0)