You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the time on the filesystem hosting the autosave files differs from the IOC clock, then you get some incorrect error messages:
2024-02-15 15:28:49 save_restore:write_save_file: Can't write save file. [240215-152849]
2024-02-15 15:28:49 save_restore:write_it: file time is different from IOC time [240215-152849], difference=7050.000000s
This is incorrect as the files are actually saved just fine: the problem is that the write_it does the following:
delta_time=difftime(time(NULL), fileStat.st_mtime);
if (delta_time>10.0) {
printf("save_restore:write_it: file time is different from IOC time [%s], difference=%fs\n",
datetime, delta_time);
return(ERROR);
}
This means that the file can save correctly, but it reports it as if it did not. The message should probably be updated, or the time difference reduced to a warning or something similar.
The text was updated successfully, but these errors were encountered:
If the time on the filesystem hosting the autosave files differs from the IOC clock, then you get some incorrect error messages:
This is incorrect as the files are actually saved just fine: the problem is that the
write_it
does the following:Note the
return (ERROR)
:This means that the file can save correctly, but it reports it as if it did not. The message should probably be updated, or the time difference reduced to a warning or something similar.
The text was updated successfully, but these errors were encountered: