Skip to content

Commit

Permalink
Fix #617 : Raise DBUS_TIMEOUT_MSEC value in src/Helpers/InstallerDaem…
Browse files Browse the repository at this point in the history
…on.vala (#701)
  • Loading branch information
aerocyber authored Apr 11, 2023
1 parent 2fbad8a commit dfb4a85
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Helpers/InstallerDaemon.vala
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@
*/

public class Installer.Daemon {
// Wait up to 60 seconds for DBus calls to timeout. Some of the Distinst disk probe operations seem to take around 30 seconds
private const int DBUS_TIMEOUT_MSEC = 60 * 1000;
// Wait up to 300 seconds for DBus calls to timeout. Some of the Distinst disk probe operations seem to take around 30 seconds.
// Some systems may require more time for probing partitions.

private const int DBUS_TIMEOUT_MSEC = 300 * 1000;

[DBus (name = "io.elementary.InstallerDaemon")]
private interface InstallerInterface : GLib.DBusProxy {
Expand Down

0 comments on commit dfb4a85

Please sign in to comment.