You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ROB_LOGW(pubsub_client_log_prefix, "Server told us that the topic %s (topic hash %lu) is unknown,", curr_topic->topic_name, curr_topic->topic_hash);
155
155
set_topic_state(curr_topic, TOPIC_STATE_UNKNOWN);
156
156
} else {
157
-
ROB_LOGW(pubsub_client_log_prefix, "Server told us that the %lu topic hash is unknown, it is to us too, newly removed?", *(uint32_t*)(message->binary_data+1));
157
+
ROB_LOGW(pubsub_client_log_prefix, "Server told us that the %lu topic hash is unknown, it is to us too, newly removed?", curr_topic->topic_hash);
ROB_LOGI(message_sending_log_prefix, ">> As the %s, mt %i is recovering, we need to try some other media for a message (%i, %i)", queue_item->peer->name, media_type, info->state, queue_item->queue_item_type );
311
+
312
+
ROB_LOGI(message_sending_log_prefix, ">> As the %s, mt %i is recovering, we might need to try some other media for a message (%i, %i)", queue_item->peer->name, media_type, info->state, queue_item->queue_item_type );
312
313
}
313
314
314
315
if ((retval!=ROB_OK) &&// We only try other medias if we have failed..
315
316
(queue_item->receipt) &&// ..and if it is receipt required, then we infer that we will try with multiple medias
316
-
(retval!=ROB_ERR_WHO)) // ..or if the peer knew who we were (it will only respond to unknowns on wired connections)
317
+
(retval!=ROB_ERR_WHO) &&// ..or if the peer knew who we were (it will only respond to unknowns on wired connections)
318
+
(get_host_supported_media_types() != (queue_item->exclude_media | media_type))) // And that there are no other medias to try
0 commit comments