Skip to content

Commit

Permalink
fix(devbox): properly pass said arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
arunmathaisk committed Oct 18, 2024
1 parent 5f254be commit 1b7c5de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agent/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,7 @@ def devbox_init(self, devbox_name):
@job("New Devbox", priority="low")
def new_devbox(self, devbox_name):
websockify_port = self.find_available_ports(num_ports=1)[0]
self.devbox_init()
self.devbox_init(devbox_name=devbox_name)
devbox = Devbox(devbox_name=devbox_name, server=self, websockify_port=websockify_port)
devbox.run_devbox()
devbox.setup_nginx()

0 comments on commit 1b7c5de

Please sign in to comment.