Comment 7 for bug 1388946

Revision history for this message
In , Eric Koegel (eric-koegel) wrote :

We're hitting DBUS's reply timeout. We'll have to find a way to perform the call without a timeout to fix this. The code in question is in:
http://git.xfce.org/xfce/xfdesktop/tree/src/xfdesktop-file-utils.c#n691
which calls xfdesktop_file_manager_proxy_rename_file_async
There's a dbus_g_proxy_call_with_timeout
http://dbus.freedesktop.org/doc/dbus-glib/dbus-glib-DBusGProxy.html#dbus-g-proxy-call-with-timeout
But the timeout is an int representing milliseconds which only gets up to 32 seconds (unless my math is off). Maybe dbus_g_proxy_call_no_reply? ...If that's not possible then we may have to not use dbus/thunar for renames and write the renaming dialog and operation ourselves to fix this issue.