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:
Oleg Girko
2015-11-05 03:06:25 +00:00
parent dd58f3dfe9
commit 933d53f90e
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ CONFIG = {
# } # }
} }
}, },
"subject_data": full_path("subject_data.db"), "subject_data": full_path("subject_data_3.db"),
#"domain": "umu.se", #"domain": "umu.se",
#"name_qualifier": "" #"name_qualifier": ""
}, },

View File

@@ -45,7 +45,7 @@ CONFIG = {
# } # }
} }
}, },
"subject_data": full_path("subject_data.db"), "subject_data": full_path("subject_data_2.db"),
#"domain": "umu.se", #"domain": "umu.se",
#"name_qualifier": "" #"name_qualifier": ""
}, },