Hi,
I got a very weird error:
When I try to commit two files from different projects from same repository,
it fails with one order, but works fine with different order when these
projects are checked out with machine name.
Example:
Repository: my_rep
Machine : server1
Case 1: cvs -d server1:my_rep co project1
cvs -d server1:my_rep co project2
Commit commands: (run from project1 dir)
project1: cvs commit ../project2/path.py test.py FAILS
cvs commit test.py ../project2/path.py PASS
Case 2: cvs -d my_rep co project1
cvs -d my_rep co project2
Commit commands: (run from project1 dir)
project1: cvs commit ../project2/path.py test.py PASS
cvs commit test.py ../project2/path.py PASS
My loginfo file in CVSROOT dir of the my_rep contains a script that just
sleeps for 10 secs.
project1 python sleep.py
project2 python sleep.py
Any ideas why this happens?
Thanks,
dksr