bsc#981976 Gdm should stop after a few times fails OBS-URL: https://build.opensuse.org/request/show/419575 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gdm?expand=0&rev=318
14 lines
507 B
Diff
14 lines
507 B
Diff
diff --git a/daemon/gdm-display.c b/daemon/gdm-display.c
|
|
index ab84ba4..e1d0996 100644
|
|
--- a/daemon/gdm-display.c
|
|
+++ b/daemon/gdm-display.c
|
|
@@ -673,7 +673,7 @@ gdm_display_unmanage (GdmDisplay *self)
|
|
}
|
|
|
|
elapsed = g_timer_elapsed (self->priv->server_timer, NULL);
|
|
- if (elapsed < 3) {
|
|
+ if (elapsed < 10) {
|
|
g_warning ("GdmDisplay: display lasted %lf seconds", elapsed);
|
|
_gdm_display_set_status (self, GDM_DISPLAY_FAILED);
|
|
} else {
|