Patrick Goldbronn - SFME/LGLS wrote: > > When I do a script that ask for a list of cvs file to do an action like > this : > > for f in "$files_list" > do > cvs log $f > done
> When I see in log file, I find : > inetd[13407]: cvspserver/tcp server failing (looping or being flooded), Each time you run a cvs command, it opens a connection to the server, and the number of times you're calling cvs is over the server's connection limit. Some solutions/workarounds: 1. Avoid putting cvs calls in loops. Instead, do something like 'cvs log $files_list' or 'find files |xargs cvs log' 2. run the script on the cvs server machine (local mode) > I suppose cvs server can support many clients requests at same time but > I'm not sure ! It can, but it depends on inetd to manage those requests, so it also depends on its limitations. -Matt _______________________________________________ Info-cvs mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/info-cvs
