fix #560 : refresh index after storing data
This commit is contained in:
parent
401ba69baf
commit
8598c3b8f2
1 changed files with 3 additions and 1 deletions
|
@ -188,7 +188,9 @@ public class FailureUrlService {
|
|||
failureUrl.setLastAccessTime(ComponentUtil.getSystemHelper().getCurrentTimeAsLong());
|
||||
failureUrl.setThreadName(Thread.currentThread().getName());
|
||||
|
||||
bhv.insertOrUpdate(failureUrl);
|
||||
bhv.insertOrUpdate(failureUrl, op -> {
|
||||
op.setRefresh(true);
|
||||
});
|
||||
}
|
||||
|
||||
private String getStackTrace(final Throwable t) {
|
||||
|
|
Loading…
Add table
Reference in a new issue