Skip to content

Commit adaf517

Browse files
committed
resolved conflicting changes
2 parents 1c28770 + 2976f44 commit adaf517

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
*.swp
22
*.pyc
33
*.config
4+
*.csv
5+
*.out
46
*.log
57
*.log.*
6-
*.out
7-
*.csv
8+
temp*

pytpcc/MONGODB_EXAMPLE

+11-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1+
# MongodbDriver Configuration File
2+
# generate example with default values via `tpcc.py --print-config mongodb`
13
[mongodb]
2-
denormalize = False
3-
uri = mongodb://listOfHosts:27017/test?ssl=true&replicaSet=RSName&authSource=admin&retryWrites=true
4-
user = username
5-
passwd = passwd
4+
# The mongodb connection string or full URI or mongodb+srv string
5+
uri = mongodb://localhost:27017
6+
causal_consistency = True
7+
findandmodify = True
68
name = tpcc
7-
findAndModify = True
9+
secondary_reads = True
10+
denormalize = True
11+
retry_writes = True
12+
# user = username
13+
# passwd = passwd

0 commit comments

Comments
 (0)