Skip to content

Commit

Permalink
remove namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
theomonnom committed Jul 24, 2024
1 parent ef76aa8 commit 89ef440
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions livekit-agents/livekit/agents/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ class WorkerOptions:
num_idle_processes: int = 3
shutdown_process_timeout: float = 60.0
initialize_process_timeout: float = 10.0
namespace: str = "default"
permissions: WorkerPermissions = field(default_factory=WorkerPermissions)
worker_type: agent.JobType = agent.JobType.JT_ROOM
max_retry: int = MAX_RECONNECT_ATTEMPTS
Expand Down Expand Up @@ -298,7 +297,7 @@ async def _worker_task(self) -> None:
agent=True,
)
)
req.register.namespace = self._opts.namespace
req.register.namespace = "default"
req.register.version = __version__
await ws.send_bytes(req.SerializeToString())

Expand Down

0 comments on commit 89ef440

Please sign in to comment.