* Note that debian alpha packages should use versions like this:
* 2.0.34-0alpha0
*/
-#define SIRIDB_VERSION_PRE_RELEASE "-alpha-0"
+#define SIRIDB_VERSION_PRE_RELEASE ""
#ifndef NDEBUG
#define SIRIDB_VERSION_BUILD_RELEASE "+debug"
#include <siri/siri.h>
#include <stddef.h>
-/* Changed in v2.0.45: from 10 -> 5 milliseconds to prioritize replication */
-#define REPLICATE_SLEEP 5 /* 5 milliseconds * active tasks */
+/* Changed in v2.0.45: from 10 -> 0 milliseconds to prioritize replication */
+#define REPLICATE_SLEEP 0 /* 0 milliseconds * active tasks */
#define REPLICATE_TIMEOUT 300000 /* 5 minutes */
static void REPLICATE_work(uv_timer_t * handle);
uv_timer_start(
replicate->timer,
REPLICATE_work,
- REPLICATE_SLEEP,
+ 10, /* initial sleep */
0);
}
else