create more specific FC warning
authorChristian Grothoff <christian@grothoff.org>
Tue, 26 Feb 2019 10:52:00 +0000 (11:52 +0100)
committerChristian Grothoff <christian@grothoff.org>
Tue, 26 Feb 2019 10:52:20 +0000 (11:52 +0100)
src/util/mq.c

index 72ab8b72d0a6cfa524d4d8b64453244eb4dd81fa..513c008eeb52748e3265afd7708e4bfb7bc2f511 100644 (file)
@@ -1,6 +1,6 @@
 /*
      This file is part of GNUnet.
-     Copyright (C) 2012-2017 GNUnet e.V.
+     Copyright (C) 2012-2019 GNUnet e.V.
 
      GNUnet is free software: you can redistribute it and/or modify it
      under the terms of the GNU Affero General Public License as published
@@ -374,7 +374,14 @@ GNUNET_MQ_send (struct GNUNET_MQ_Handle *mq,
   GNUNET_assert (NULL == ev->parent_queue);
 
   mq->queue_length++;
-  GNUNET_break (mq->queue_length < 10000); /* This would seem like a bug... */
+  if (mq->queue_length >= 10000)
+  {
+    /* This would seem like a bug... */
+    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
+               "MQ with %u entries extended by message of type %u (FC broken?)\n",
+               (unsigned int) mq->queue_length,
+               (unsigned int) ntohs (ev->mh->type));
+  }
   ev->parent_queue = mq;
   /* is the implementation busy? queue it! */
   if ( (NULL != mq->current_envelope) ||