Skip to content

Commit

Permalink
set Ray dashboard host address to 0.0.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aromanielloNTIA committed Apr 26, 2023
1 parent 4b7ae39 commit eb3de44
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scos_actions/actions/acquire_sea_data_product.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@
logger = logging.getLogger(__name__)

if not ray.is_initialized():
ray.init() # Dashboard is enabled if ray[default] is installed
# Dashboard is only enabled if ray[default] is installed
ray.init(dashboard_host="0.0.0.0")

# Define parameter keys
RF_PATH = "rf_path"
Expand Down

0 comments on commit eb3de44

Please sign in to comment.