Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Müller <fmueller@owncloud.com>2021-04-22 14:11:37 +0300
committerHannah von Reth <vonreth@kde.org>2021-04-30 14:25:49 +0300
commit70ddd079643d444891fe3964640fd220306edc7d (patch)
tree66a687809c808be723ca9452a093eef736ebe92c /shell_integration/nautilus/syncstate.py
parent1cbb7612a85f4ea26d697563b16cf2dcbbdbea28 (diff)
Increase socket read timeout
Diffstat (limited to 'shell_integration/nautilus/syncstate.py')
-rw-r--r--shell_integration/nautilus/syncstate.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/shell_integration/nautilus/syncstate.py b/shell_integration/nautilus/syncstate.py
index e947e1a13..1c8fafe8d 100644
--- a/shell_integration/nautilus/syncstate.py
+++ b/shell_integration/nautilus/syncstate.py
@@ -237,7 +237,8 @@ class MenuExtension_ownCloud(GObject.GObject, Nautilus.MenuProvider):
done = False
start = time.time()
- timeout = 0.1 # 100ms
+ # timeout is specified in seconds
+ timeout = 0.5
menu_items = []
while not done:
dt = time.time() - start