notes on current issues
authorChristian Grothoff <christian@grothoff.org>
Wed, 25 May 2011 22:19:16 +0000 (22:19 +0000)
committerChristian Grothoff <christian@grothoff.org>
Wed, 25 May 2011 22:19:16 +0000 (22:19 +0000)
TODO
src/transport/transport_api.c

diff --git a/TODO b/TODO
index 0fbe05e9a467ff520e26154192792d481890bc2b..ea1468a3060245accfbbd8b4ee26480a7c9e2e1f 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,10 +1,20 @@
 0.9.0pre3:
+* DATASTORE [CG]
+  - FS datastore lookups requested but callback never happens (timeout
+    was set to 'forever', but still it should not take many minutes);
+    => new warning "Datastore lookup already took 180000 ms!" generated
+       by current fs p2p trust testcase
+* CORE: (both reproduced using current fs p2p trust testcase after a looong time running):
+  - May 25 22:13:53 core-4801 ERROR Assertion failed at transport_api.c:2063.
+    (notify transmit ready cancel called in transmit_stage state 'TS_NEW')
+  - May 25 22:13:53 fs-4762 ERROR Assertion failed at core_api.c:1254.
+    (ConfigInfoMessage received for peer that is not known to be connected)
 * FS [CG]
   - perf_gnunet_service_fs_p2p_trust causes crashes of the service
     and assertion failures
-  - test_gnunet_fs_ns.py doesn't run
   - implement 'SUPPORT_DELAYS'
 
+
 0.9.0:
 * new webpage:
   - write chapter on DHT/block [Nate] 
index 0246b8aece0bd546b7075aa09a702a6397998502..1a2cf4035966188556724fa6d83e1ac43bdae1a9 100644 (file)
@@ -2060,7 +2060,7 @@ GNUNET_TRANSPORT_notify_transmit_ready_cancel (struct
   switch (n->transmit_stage)
     {
     case TS_NEW:
-      GNUNET_break (0);
+      GNUNET_assert (0);
       break;
     case TS_QUEUED:
       n->transmit_stage = TS_NEW;