[jira] Updated: (ZOOKEEPER-181) Some Source Forge Documents did not get moved over: javaExample, zookeeperTutorial, zookeeperInternals

2008-10-10 Thread Patrick Hunt (JIRA)

 [ 
https://issues.apache.org/jira/browse/ZOOKEEPER-181?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Patrick Hunt updated ZOOKEEPER-181:
---

Attachment: ZOOKEEPER_181.patch

Updated with some minor formatting changes.

 Some Source Forge Documents did not get moved over: javaExample, 
 zookeeperTutorial, zookeeperInternals
 --

 Key: ZOOKEEPER-181
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-181
 Project: Zookeeper
  Issue Type: Bug
Affects Versions: 3.0.0
Reporter: Robbie Scott
Assignee: Patrick Hunt
 Fix For: 3.0.0

 Attachments: 2pc.png, ZOOKEEPER_181.patch, ZOOKEEPER_181.patch

   Original Estimate: 48h
  Remaining Estimate: 48h

 Some Source Forge Documents did not get moved over: 
 javaExample
 zookeeperTutorial
 (These two I will move over directly)
  
 zookeeperLogging
 zookeeperAtomicBroadcast
 (These two I will roll up into a new document: zookeeperInternals)
 We can expand zookeeperInterals as new sections are needed, maybe one day 
 morphing it into the complete guide for zookeeper contributers

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (ZOOKEEPER-181) Some Source Forge Documents did not get moved over: javaExample, zookeeperTutorial, zookeeperInternals

2008-10-10 Thread Patrick Hunt (JIRA)

 [ 
https://issues.apache.org/jira/browse/ZOOKEEPER-181?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Patrick Hunt updated ZOOKEEPER-181:
---

Status: Patch Available  (was: Open)

 Some Source Forge Documents did not get moved over: javaExample, 
 zookeeperTutorial, zookeeperInternals
 --

 Key: ZOOKEEPER-181
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-181
 Project: Zookeeper
  Issue Type: Bug
Affects Versions: 3.0.0
Reporter: Robbie Scott
Assignee: Patrick Hunt
 Fix For: 3.0.0

 Attachments: 2pc.png, ZOOKEEPER_181.patch, ZOOKEEPER_181.patch

   Original Estimate: 48h
  Remaining Estimate: 48h

 Some Source Forge Documents did not get moved over: 
 javaExample
 zookeeperTutorial
 (These two I will move over directly)
  
 zookeeperLogging
 zookeeperAtomicBroadcast
 (These two I will roll up into a new document: zookeeperInternals)
 We can expand zookeeperInterals as new sections are needed, maybe one day 
 morphing it into the complete guide for zookeeper contributers

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (ZOOKEEPER-181) Some Source Forge Documents did not get moved over: javaExample, zookeeperTutorial, zookeeperInternals

2008-10-10 Thread Patrick Hunt (JIRA)

 [ 
https://issues.apache.org/jira/browse/ZOOKEEPER-181?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Patrick Hunt updated ZOOKEEPER-181:
---

  Resolution: Fixed
Hadoop Flags: [Reviewed]
  Status: Resolved  (was: Patch Available)

Committed revision 703480.

 Some Source Forge Documents did not get moved over: javaExample, 
 zookeeperTutorial, zookeeperInternals
 --

 Key: ZOOKEEPER-181
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-181
 Project: Zookeeper
  Issue Type: Bug
Affects Versions: 3.0.0
Reporter: Robbie Scott
Assignee: Patrick Hunt
 Fix For: 3.0.0

 Attachments: 2pc.png, ZOOKEEPER_181.patch, ZOOKEEPER_181.patch

   Original Estimate: 48h
  Remaining Estimate: 48h

 Some Source Forge Documents did not get moved over: 
 javaExample
 zookeeperTutorial
 (These two I will move over directly)
  
 zookeeperLogging
 zookeeperAtomicBroadcast
 (These two I will roll up into a new document: zookeeperInternals)
 We can expand zookeeperInterals as new sections are needed, maybe one day 
 morphing it into the complete guide for zookeeper contributers

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Created: (ZOOKEEPER-182) zookeeper_init accepts empty host-port string and returns valid pointer to zhandle_t.

2008-10-10 Thread Maxim P. Dementiev (JIRA)
zookeeper_init accepts empty host-port string and returns valid pointer to 
zhandle_t.
-

 Key: ZOOKEEPER-182
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-182
 Project: Zookeeper
  Issue Type: Bug
  Components: c client
 Environment: Linux
Reporter: Maxim P. Dementiev


Please, add this test to src/c/tests/TestZookeeperInit.cc to reproduce this:

void testEmptyAddressString()
{
zh=zookeeper_init(,0,0,0,0,0);
CPPUNIT_ASSERT(zh==0);
}


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Created: (ZOOKEEPER-183) Array subscript is above array bounds in od_completion(), src/cli.c.

2008-10-10 Thread Maxim P. Dementiev (JIRA)
Array subscript is above array bounds in od_completion(), src/cli.c.


 Key: ZOOKEEPER-183
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-183
 Project: Zookeeper
  Issue Type: Bug
  Components: c client
 Environment: Linux
Reporter: Maxim P. Dementiev


Having:
char buf[4096*16];
Present:
buf[sizeof(buf)]=0;
Must be:
buf[sizeof(buf)-1]=0;


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Resolved: (ZOOKEEPER-73) Move ZK wiki from SourceForge to Apache

2008-10-10 Thread Patrick Hunt (JIRA)

 [ 
https://issues.apache.org/jira/browse/ZOOKEEPER-73?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Patrick Hunt resolved ZOOKEEPER-73.
---

  Resolution: Fixed
Hadoop Flags: [Reviewed]

All of the twiki pages from sourceforge have now been moved to apache forrest 
docs or apache wiki. Closing.


 Move ZK wiki from SourceForge to Apache
 ---

 Key: ZOOKEEPER-73
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-73
 Project: Zookeeper
  Issue Type: Task
  Components: documentation
Reporter: Patrick Hunt
Assignee: Patrick Hunt
 Fix For: 3.0.0


 Move the ZK wiki content from sourceforge to apache wiki.
 base Apache page is:
 http://wiki.apache.org/hadoop/ZooKeeper

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (ZOOKEEPER-178) FLE test.

2008-10-10 Thread Benjamin Reed (JIRA)

 [ 
https://issues.apache.org/jira/browse/ZOOKEEPER-178?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Benjamin Reed updated ZOOKEEPER-178:


Hadoop Flags: [Reviewed]

+1 Looks good!

 FLE test.
 -

 Key: ZOOKEEPER-178
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-178
 Project: Zookeeper
  Issue Type: Bug
  Components: leaderElection
Reporter: Mahadev konar
Assignee: Flavio Paiva Junqueira
 Fix For: 3.0.0

 Attachments: FLE-Fail.txt, 
 TEST-org.apache.zookeeper.test.FLETest.txt, ZOOKEEPER-178.patch


 fast leader election test failing .

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (ZOOKEEPER-17) zookeeper_init doc needs clarification

2008-10-10 Thread Patrick Hunt (JIRA)

 [ 
https://issues.apache.org/jira/browse/ZOOKEEPER-17?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Patrick Hunt updated ZOOKEEPER-17:
--

Resolution: Fixed
Status: Resolved  (was: Patch Available)

Committed revision 703595.

 zookeeper_init doc needs clarification
 --

 Key: ZOOKEEPER-17
 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-17
 Project: Zookeeper
  Issue Type: Bug
  Components: c client, documentation
Reporter: Patrick Hunt
Assignee: Patrick Hunt
 Fix For: 3.0.0

 Attachments: ZOOKEEPER-17.patch, ZOOKEEPER-17.patch


 Moved from SourceForge to Apache.
 http://sourceforge.net/tracker/index.php?func=detailaid=1967467group_id=209147atid=1008544

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.