Browse Source

Avoid updating diff until there is a current work base

master
Con Kolivas 10 years ago
parent
commit
10bb351736
  1. 5
      src/stratifier.c

5
src/stratifier.c

@ -872,6 +872,11 @@ static void update_diff(ckpool_t *ckp)
json_t *val;
char *buf;
if (unlikely(!current_workbase)) {
LOGINFO("No current workbase to update diff yet");
return;
}
buf = send_recv_proc(ckp->generator, "getdiff");
if (unlikely(!buf)) {
LOGWARNING("Failed to get diff from generator in update_diff");

Loading…
Cancel
Save