Merge branch 'concedo' into concedo_experimental

# Conflicts:
#	koboldcpp.py
This commit is contained in:
Concedo 2023-10-06 11:22:01 +08:00
commit efd0567f10

View file

@ -1805,7 +1805,7 @@ def main(launch_args,start_server=True):
def onready_subprocess(): def onready_subprocess():
import subprocess import subprocess
print("Starting Post-Load subprocess...") print("Starting Post-Load subprocess...")
subprocess.Popen(args.onready[0], shell=True) subprocess.run(args.onready[0], shell=True)
timer_thread = threading.Timer(1, onready_subprocess) #1 second delay timer_thread = threading.Timer(1, onready_subprocess) #1 second delay
timer_thread.start() timer_thread.start()