# # # patch "automate.cc" # from [d97e1ee3fccf5a5129be8e87e4642d5366774384] # to [92bd15a7c6623cd0b1c1dd3309653a2b9129ba2a] # ============================================================ --- automate.cc d97e1ee3fccf5a5129be8e87e4642d5366774384 +++ automate.cc 92bd15a7c6623cd0b1c1dd3309653a2b9129ba2a @@ -1975,8 +1975,9 @@ static sync_map_t get_sync_info(app_stat { if (begins_with(j->first(),prefix)) { - I(j->second.first); // value is not undefined - result[std::make_pair(sp,j->first)]=j->second.second; + if (j->second.first) // value is not undefined + result[std::make_pair(sp,j->first)]=j->second.second; + // else W(F("undefined value of %s %s\n") % sp % j->first()); } } }