Skip to content

Commit

Permalink
fix(devbox): add step_record property
Browse files Browse the repository at this point in the history
  • Loading branch information
arunmathaisk committed Oct 18, 2024
1 parent 4c3eb23 commit f237984
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions agent/devbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@ def __init__(self, devbox_name: str, server: Server, websockify_port: int):
self.job = None
self.step = None

@property
def step_record(self):
return self.server.step_record

@step_record.setter
def step_record(self, value):
self.server.step_record = value

@step("Devbox Setup NGINX")
def setup_nginx(self, is_devbox=False):
from filelock import FileLock
Expand Down

0 comments on commit f237984

Please sign in to comment.