Skip to content

Commit

Permalink
fix mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
BennyBot committed Feb 23, 2024
1 parent 9493d9d commit 75f672a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pros/conductor/depots/http_depot.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


class HttpDepot(Depot):
def __init__(self, name: str, location: str, beta: bool = False):
def __init__(self, name: str, location: str, early_access: bool = False):
# Note: If update_frequency = timedelta(minutes=1) isn't included as a parameter,
# the beta depot won't be saved in conductor.json correctly
super().__init__(name, location, config={"early_access": beta}, config_schema={}, update_frequency = timedelta(minutes=1))
Expand Down

0 comments on commit 75f672a

Please sign in to comment.