[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[List Home]
|
[platform-cvs-dev] CVS update corrupted my source
|
- From: "Kristopher Ives" <nullmind@xxxxxxxxx>
- Date: Tue, 4 Dec 2007 08:57:38 -0800
- Delivered-to: platform-cvs-dev@eclipse.org
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; bh=aW1GwWhCp26AnW5OLeEx3DghsgQJ0ZVwPRvi1ec56TA=; b=Lp3VE4Q9hco//vxBMExBnPLAtrQAfmkQB9dORZE/9tPn1LeiwvlRrK8DRBcwEXTSS14+kZJZYtRF60U4+rLbeVQc3VpPiG03ybS0+Yl6u81HtAZJ/kH/EysweA9ci9V7wHhLZVcHvGmLbW70NVzHuxYwXqQ7evDYRBc1aT/iysU=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=received:message-id:date:from:to:subject:mime-version:content-type; b=CYQwVYQUka3Kdqf1Z6VRpy9i4HLdws/sVG7dtBe1nFMJq2BXNS+wlkSgt8CkiU9yrVAtk1OIwF3nEFHKGbxFM2yHiqYgw1MhOIELQDMIYejcMDw7mYOfDrMsa1WRZKgMK1FddPBW7rFj0xW5gkEWhvXsT4XxilUYS/e9rbHVqc8=
I'm using Eclipse 3.3.1.1
on Ubuntu 7.10 (Gutsy) with the latest updates from the discovery site
as well as my local repositories. When multiple devs do concurrent
edits on a source file, one commits, it will garble our source putting
what appears to be a diff pattern. After trying to update again it will
report:
The server reported an error while performing the "cvs update" command.
reuox: The server did not provide any additional information.
However, this is untrue, as I
can still execute a "cvs update" and my CVS server is actually working
fine, no such error has ever been reported (and "not" at the same
time...), so Eclipse is slandering my CVS server. The source that was
garbled will look like this:
----------------------------
selector = Selector.open();
<<<<<<< LoginServer.java
InetAddress ip = InetAddress.getByName("
192.168.1.104");
System.out.println(ip.toString());
=======
Enumeration<NetworkInterface> ifaces = NetworkInterface.getNetworkInterfaces();
----------------------------
In
this case I had added much more source than this when I commited (gets
an enumation of the network interfaces and prints the InetAddresses
associated with them for use in our server)
Cheers,
Kristopher Ives