Skip to content

Commit

Permalink
try this
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed Dec 11, 2024
2 parents dcb3dac + 8dd1903 commit 791c6dc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 24.12.10
- Hotfix for UI settings bug


### 24.12.5

#### Highlights
Expand Down
3 changes: 2 additions & 1 deletion pioreactor/cluster_management/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from __future__ import annotations

import subprocess
import sys
from concurrent.futures import ThreadPoolExecutor
from time import sleep

Expand Down Expand Up @@ -80,7 +81,7 @@ def add_worker(hostname: str, password: str, version: str, model: str) -> None:
logger.error(
f"`{hostname}` not found on network after {round(elapsed())} seconds. Check that you provided the right i) the name is correct, ii) worker is powered on, iii) any WiFi credentials to the network are correct."
)
raise click.Abort()
sys.exit()
sleep(sleep_time)

res = subprocess.run(
Expand Down
2 changes: 1 addition & 1 deletion pioreactor/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Append "dev0" if a dev version
# Append "rc0" if a rc version
# No zero padding!
__version__ = "24.12.5.dev0"
__version__ = "24.12.10.dev0"


def get_hardware_version() -> tuple[int, int] | tuple[int, int, str]:
Expand Down

0 comments on commit 791c6dc

Please sign in to comment.