mdsol / mesos_cookbook

Chef cookbook for installing Apache Mesos
Other
78 stars 71 forks source link

Fix zk:// url creation in /etc/mesos/zk #18

Closed stevendborrelli closed 10 years ago

stevendborrelli commented 10 years ago

The template file is generating a trailing ',' before the path in the /etc/mesos/zk file like this:

zk://zk1.aster.is:2181,zk2.aster.is:2181,zk3.aster.is:2181,/mesos

The fix just removes the trailing comma to make the output:

zk://zk1.aster.is:2181,zk2.aster.is:2181,zk3.aster.is:2181/mesos
medidata commented 10 years ago

Can one of the admins verify this patch?

rayrod2030 commented 10 years ago

Thank you for the fix!