From: Martin Vidner Date: Thu, 16 Jan 2020 12:42:40 +0000 (+0100) Subject: Fix "Snapper is not creating the post snapshot" (bsc#1160938) X-Git-Tag: v0.8.9^2~8 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=62088ebf8e07a6cb7911b66f45522faee381044b;p=thirdparty%2Fsnapper.git Fix "Snapper is not creating the post snapshot" (bsc#1160938) It is an embarrassing case of a forgotten debugging printf, which throws the communication protocol out of sync. --- diff --git a/zypp-plugin/snapper_zypp_plugin.cc b/zypp-plugin/snapper_zypp_plugin.cc index bd7ed27e..7db0e7a8 100644 --- a/zypp-plugin/snapper_zypp_plugin.cc +++ b/zypp-plugin/snapper_zypp_plugin.cc @@ -302,7 +302,6 @@ set SnapperZyppPlugin::get_solvables(const Message& msg, Phase phase) { if (json_object_get_type(steps) == json_type_array) { size_t i, len = json_object_array_length(steps); - printf("steps: %zu\n", len); for (i = 0; i < len; ++i) { json_object * step = json_object_array_get_idx(steps, i); bool have_type = json_object_object_get_ex(step, "type", NULL);