File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -73,8 +73,7 @@ if [ "$1" = 'postgres' ]; then
73
73
max_replication_slots = 10
74
74
max_wal_senders = 10
75
75
shared_preload_libraries = 'raftable,multimaster'
76
- log_checkpoints = on
77
- log_autovacuum_min_duration = 0
76
+ default_transaction_isolation = 'repeatable read'
78
77
79
78
raftable.id = $NODE_ID
80
79
raftable.peers = '$RAFT_PEERS '
Original file line number Diff line number Diff line change
1
+ from __future__ import print_function
1
2
import time
2
3
import datetime
3
4
import uuid
@@ -96,7 +97,7 @@ def aggregate(self):
96
97
if named_agg ['running_latency' ] < latency :
97
98
named_agg ['running_latency' ] = latency
98
99
99
- self .last_aggregation = datetime . datetime . now ()
100
+ # self.last_aggregation = last_aggregation
100
101
#print("aggregeted!")
101
102
return agg
102
103
You can’t perform that action at this time.
0 commit comments