From 26e8aaadcb9227fde6efb77147a523109c0067ee Mon Sep 17 00:00:00 2001 From: Ivan Vazhenin Date: Sun, 2 Apr 2023 15:38:15 +0300 Subject: [PATCH] Fix Request/Answer queries --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 23856a9..08570da 100644 --- a/main.py +++ b/main.py @@ -49,14 +49,14 @@ def replication_task(): filename = '51a8a2c81f774af7bba61b475b4b51b5' filepath = '/tmp/' + filename response_files = [{'name': filename, 'url': filepath, 'size': os.path.getsize(filepath)}] - logging.info('Send replication package') + logging.debug('Send replication package') proxy = ServerProxy('http://127.0.0.1:7000/xmlrpc') proxy.send(response_params, response_files, 'http://10.10.8.27:9000/') # Expose a function def list_contents(dir_name): - logging.info('list_contents(%s)', dir_name) + logging.debug('list_contents(%s)', dir_name) return os.listdir(dir_name)