Clear caches on initial restart

Tweak `Restarter` to clear caches on the initial restart.

See gh-3082
This commit is contained in:
Phillip Webb 2015-06-05 12:56:03 -07:00
parent 7609c43685
commit 25f74cbaef

View File

@ -157,6 +157,7 @@ public class Restarter {
@Override
public Void call() throws Exception {
start();
cleanupCaches();
return null;
}