mirror of
				https://github.com/Klipper3d/klipper.git
				synced 2025-10-31 10:25:57 +01:00 
			
		
		
		
	webooks: do not connect if debuginput is enabled
Changing this check from debugoutput to debuginput allows remote applications to perform tests against Klippy without an MCU connected. Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
		| @@ -99,9 +99,9 @@ class ServerConnection: | ||||
|         self.fd = self.fd_handle = self.mutex = None | ||||
|         self.is_server_connected = False | ||||
|         self.partial_data = "" | ||||
|         is_fileoutput = (printer.get_start_args().get('debugoutput') | ||||
|                          is not None) | ||||
|         if is_fileoutput: | ||||
|         is_fileinput = (printer.get_start_args().get('debuginput') | ||||
|                         is not None) | ||||
|         if is_fileinput: | ||||
|             # Do not try to connect in klippy batch mode | ||||
|             return | ||||
|         self.socket = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user