From 0237e279a57031cec71d57af532067e91b1607eb Mon Sep 17 00:00:00 2001 From: Alex Bezdieniezhnykh Date: Thu, 17 Apr 2025 00:18:40 +0300 Subject: [PATCH] don't send user dto back --- Azaion.Inference/main.pyx | 1 - 1 file changed, 1 deletion(-) diff --git a/Azaion.Inference/main.pyx b/Azaion.Inference/main.pyx index 592ad0c..acf5fe2 100644 --- a/Azaion.Inference/main.pyx +++ b/Azaion.Inference/main.pyx @@ -62,7 +62,6 @@ cdef class CommandProcessor: cdef User user self.api_client.set_credentials(Credentials.from_msgpack(command.data)) user = self.api_client.get_user() - self.remote_handler.send(command.client_id, user.serialize()) cdef load_file(self, RemoteCommand command): cdef FileData file_data = FileData.from_msgpack(command.data)