Skip to content

Commit b36fd91

Browse files
committed
Add artificial delay in DTMD
1 parent b6c2eb7 commit b36fd91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/multimaster/dtmd/src/server.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ static bool stream_flush(stream_t stream) {
174174
{
175175
struct timespec ts;
176176
ts.tv_sec = 0;
177-
ts.tv_nsec = 10000; /* 10usec */
177+
ts.tv_nsec = 20000; /* 20usec */
178178
nanosleep(&ts, NULL);
179179
}
180180
char *cursor = stream->output.data;

0 commit comments

Comments
 (0)