We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6135f68 commit b9bbb09Copy full SHA for b9bbb09
contrib/mmts/tests2/docker-entrypoint.sh
@@ -73,6 +73,7 @@ if [ "$1" = 'postgres' ]; then
73
max_replication_slots = 10
74
max_wal_senders = 10
75
shared_preload_libraries = 'raftable,multimaster'
76
+ default_transaction_isolation = 'repeatable read'
77
78
raftable.id = $NODE_ID
79
raftable.peers = '$RAFT_PEERS'
contrib/mmts/tests2/lib/event_history.py
@@ -1,3 +1,4 @@
1
+from __future__ import print_function
2
import time
3
import datetime
4
import uuid
@@ -96,7 +97,7 @@ def aggregate(self):
96
97
if named_agg['running_latency'] < latency:
98
named_agg['running_latency'] = latency
99
- self.last_aggregation = datetime.datetime.now()
100
+ #self.last_aggregation = last_aggregation
101
#print("aggregeted!")
102
return agg
103
0 commit comments