Skip to content

Commit

Permalink
feat: removed Ephys Link port option (defaults to 3000 now)
Browse files Browse the repository at this point in the history
  • Loading branch information
kjy5 committed Jul 5, 2024
1 parent faf29bf commit 0d2ecb0
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/vbl_aquarium/models/ephys_link.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ class EphysLinkOptions(VBLBaseModel):
:type use_proxy: bool
:param proxy_address: Address of the proxy service.
:type proxy_address: str
:param port: HTTP port to serve on or connect to (if using the proxy).
:type port: int
:param mpm_port: Port for New Scale MPM HTTP server.
:type mpm_port: int
:param serial: Serial port for emergency stop.
Expand All @@ -35,7 +33,6 @@ class EphysLinkOptions(VBLBaseModel):
debug: bool = False
use_proxy: bool = False
proxy_address: str = "proxy2.virtualbrainlab.org"
port: int = Field(default=8081, ge=1024, le=49151)
mpm_port: int = Field(default=8080, ge=1024, le=49151)
serial: str = "no-e-stop"

Expand Down

0 comments on commit 0d2ecb0

Please sign in to comment.