Skip to content

Commit

Permalink
Tweak display names
Browse files Browse the repository at this point in the history
  • Loading branch information
ProbablyFaiz committed Apr 25, 2024
1 parent e95a659 commit d171f2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rl/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

CHECK_BATCH_EVERY = 10

DEFAULT_JOB_NAME = f"rl-{datetime.datetime.now().strftime('%m-%d-%H-%M-%S')}"
DEFAULT_JOB_NAME = f"rl_{datetime.datetime.now().strftime('%m-%d_%H-%M')}"

BASE_CONFIG_DIR = Path("~/.config/rl").expanduser()

Expand Down Expand Up @@ -494,7 +494,7 @@ def _ssh_into_sherlock(node: str):
def _ssh_within_sherlock(node: str):
if not node:
node = _select_node()
rich.print(f"[green]SSHing into {node}[/green]")
rich.print(f"[green]SSHing into {node}...[/green]")
# When SSHing in, we want to try to tmux attach and if that fails, just open a shell
run_command = "tmux attach || fish || bash"
subprocess.run([SSH_PATH, node, "-t", run_command])
Expand Down

0 comments on commit d171f2a

Please sign in to comment.