Make test server configurations use different subject data files.
Server tests in test_50_server create several servers simultaneously. However, config files for these servers use the same file for subject data. This causes EAGAIN error when trying to open the same GDBM file for shelving subject data more than once when running with Python 3. Making subject_data parameters for these servers different fixes this problem. Signed-off-by: Oleg Girko <ol@infoserver.lv>
This commit is contained in:
@@ -36,7 +36,7 @@ CONFIG = {
|
||||
# }
|
||||
}
|
||||
},
|
||||
"subject_data": full_path("subject_data.db"),
|
||||
"subject_data": full_path("subject_data_3.db"),
|
||||
#"domain": "umu.se",
|
||||
#"name_qualifier": ""
|
||||
},
|
||||
|
@@ -45,7 +45,7 @@ CONFIG = {
|
||||
# }
|
||||
}
|
||||
},
|
||||
"subject_data": full_path("subject_data.db"),
|
||||
"subject_data": full_path("subject_data_2.db"),
|
||||
#"domain": "umu.se",
|
||||
#"name_qualifier": ""
|
||||
},
|
||||
|
Reference in New Issue
Block a user