Skip to content

Commit d12cdb5

Browse files
committedApr 13, 2025
Add wait time for startup script
1 parent cda0cda commit d12cdb5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎startup/agx_startup.py

+5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import glob
1414
import os
1515
import subprocess
16+
import time
1617
import typing as tp
1718

1819

@@ -795,4 +796,8 @@ def power_control(
795796
custom_writes()
796797
custom_commands()
797798
fix_boinc()
799+
800+
sleep_time = 10
801+
print("Sleeping for ", sleep_time, "s to wait for network connectivity.")
802+
time.sleep(sleep_time)
798803
mount_cifs()

0 commit comments

Comments
 (0)