GNOME Bugzilla – Bug 425910
clock doesn't update in response to configuration tool
Last modified: 2007-05-01 11:41:55 UTC
I got a downstream bug report here: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=230832 where the user noticed it would take up to a full minute for changes made by going to "Adjust Date & Time" to take affect.
Created attachment 85773 [details] [review] this patch seems to address the issue The above patch adds a child watch to the config tool run by "Adjust Date & Time" so that we unconditionally force a refresh when it exits. This isn't a perfect fix. It won't handle the case where the config tool changes the time but doesn't exit. On the other hand, it seems to be good enough for system-config-date, which just has an [OK] button that applies the settings and exits the program.
I ran it again from a terminal and got this output when I clicked [OK]: Traceback (most recent call last):
+ Trace 124726
self.apply ()
self.timezoneBackend.writeConfig(timezone, utc, arc)
shutil.copyfile(fromFile, "/etc/localtime")
fsrc = open(src, 'rb')
creating a symlink from New_York in that directory to a New\ York made everything start working.
grr, ignore comment 2. It was meant for a different bug, https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=235064
Thanks!