<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"> P {margin-top:0;margin-bottom:0;} </style>
</head>
<body dir="ltr">
Yet another reason to hate Daylight Savings Time...
<div>Some of you may notice troubles this morning. There's a weird little bug that happens when the clocks change. It doesn't hit ALL sites, but we had some hosted sites hit this year for the first time, so I thought I'd put this at the top O' the list.</div>
<div><br>
</div>
<div>There's a JIRA here:</div>
<div>https://archivesspace.atlassian.net/browse/ANW-1229</div>
<div><br>
</div>
<div>It's PROBABLY the search_indexer user, and can be fixed by doing:</div>
<div>UPDATE user set user_mtime = NOW(), system_mtime=NOW() where username='search_indexer';</div>
<div><br>
</div>
<div>You might need to restart after updating the user</div>
<div><br>
</div>
<div>If you're not quite so lucky, it could be hiding elsewhere, another user, or an AO or a Date.</div>
<div><br>
</div>
<div>-- AO</div>
<div>update archival_object set create_time = '2022-03-13 06:00:00', system_mtime = '2022-03-13 06:00:00'</div>
<div>where create_time >= '2022-03-13 02:00:00' and create_time <= '2022-03-13 03:00:00';</div>
<div>-- DATE</div>
<div>update `date` set create_time = '2022-03-13 06:00:00', system_mtime = '2022-03-13 06:00:00'</div>
<div>where create_time >= '2022-03-13 02:00:00' and create_time <= '2022-03-13 03:00:00';</div>
<div>-- USER</div>
<div>UPDATE user set user_mtime = NOW(), system_mtime=NOW() where username='SOME_OTHER_USER';</div>
<span> </span>
<div>
<div>
<div>
<div dir="ltr" style="color:rgb(0,0,0); background-color:rgb(255,255,255)">
<div name="divtagdefaultwrapper" style="font-family: Calibri, Arial, Helvetica, sans-serif; margin: 0px;">
<span style="font-size: 14.6667px;">
<div style=""><br>
</div>
</span></div>
</div>
</div>
</div>
</div>
</body>
</html>