Hide Forgot
Complexity: Low project_key: EDG There is a problem with the installation of the datagrid profile when svn update is used: files which are copied to create the datagrid profile are not replaced with fresh copies and comments change from this: <!-- a comment --> to this: <!--<!-- a comment --> --> which generates a parsing exception. This is due to copy commands not setting the attribute overwrite="true". This happens in the file cluster/src/installers/datagrid/build.xml which is the build.xml file called by the datagrid installer. Simplest way to fix this is to delete any existing datagrid directory before beginning.
Link: Added: This issue Cloned from JBPAPP-5466
Added ant task <delete dir="${server.datagrid}"/> to the beginning of the datagrid server profile construction.