Skip to content

Commit

Permalink
working runner and server
Browse files Browse the repository at this point in the history
  • Loading branch information
RCMast3r committed Feb 17, 2024
1 parent 3017bf2 commit 6f56aa7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion py_data_acq/py_data_acq/web_server/mcap_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from typing import Any

class MCAPServer:
def __init__(self, host='127.0.0.1', port=6969, mcap_writer=None):
def __init__(self, host='0.0.0.0', port=6969, mcap_writer=None):
self.host = host
self.port = port
self.mcap_writer = mcap_writer
Expand Down
2 changes: 1 addition & 1 deletion py_data_acq/runner.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

#!/usr/bin/env python
import asyncio

from py_data_acq.foxglove_live.foxglove_ws import HTProtobufFoxgloveServer
Expand Down

0 comments on commit 6f56aa7

Please sign in to comment.