From 62ef80bfb748770ffdd7d14ff55e0a032f641585 Mon Sep 17 00:00:00 2001 From: Jeremiah K <17190268+jeremiah-k@users.noreply.github.com> Date: Sun, 26 Nov 2023 18:06:09 -0600 Subject: [PATCH] Small wording changes in comments and readme --- README.md | 2 +- app/command_wrapper.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7a8d8d2..a665642 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ cd mmrelaynode && git submodule update --init docker compose -f "docker-compose.yaml" up -d --build ``` -If modifying scripts, with the containers stopped use these commands to rebuild them: +If modifying the scripts, with the containers stopped, use these commands to rebuild them: ``` docker system prune -af diff --git a/app/command_wrapper.py b/app/command_wrapper.py index f6fd980..7bf975c 100644 --- a/app/command_wrapper.py +++ b/app/command_wrapper.py @@ -13,7 +13,7 @@ def execute_meshtastic_command(options): result = subprocess.run(command, capture_output=True, text=True) log_to_file("Standard Output:\n" + result.stdout) log_to_file("Standard Error:\n" + result.stderr) - time.sleep(30) # Pause for 30 seconds + time.sleep(1) # Pause for 1 second between commands # Print all environment variables at the start log_to_file("All environment variables:\n" + str(os.environ))