Hi All,
The problem exists with the default.vhost in enabled vhosts folder not being picked up the dispatcher configuration in both symlinks form and actual file content.
1. Checking the dispatcher maven build logs we got the below entry -
Executing command git checkout FETCH_HEAD
error: unable to create symlink dispatcher/src/conf.d/enabled_vhosts/default.vhost: File name too long
Note: checking out 'FETCH_HEAD'.
2. Checking the Build Image logs -
[0m[91m+ validate_configuration [0m[91m/tmp/dispatcher/dispatcher-configuration.zip
[0m[91m+ local zippedConfiguration=/tmp/dispatcher/dispatcher-configuration.zip
+ local unzippedConfiguration=/tmp/dispatcher/unzippedConfiguration
+ mkdir -v -p /tmp/dispatcher/unzippedConfiguration
[0mcreated directory: '/tmp/dispatcher/unzippedConfiguration'
[91m+ unzip -d /tmp/dispatcher/unzippedConfiguration /tmp/dispatcher/dispatcher-configuration.zip
[0mArchive: /tmp/dispatcher/dispatcher-configuration.zip
creating: /tmp/dispatcher/unzippedConfiguration/conf.d/available_vhosts/
creating: /tmp/dispatcher/unzippedConfiguration/conf.d/enabled_vhosts/
inflating: /tmp/dispatcher/unzippedConfiguration/conf.d/available_vhosts/default.vhost
inflating: /tmp/dispatcher/unzippedConfiguration/conf.d/available_vhosts/brandA.vhost
inflating: /tmp/dispatcher/unzippedConfiguration/conf.d/enabled_vhosts/README
inflating: /tmp/dispatcher/unzippedConfiguration/conf.d/enabled_vhosts/brandA.vhost -> ../available_vhosts/brandA.vhost
finishing deferred symbolic links:
/tmp/dispatcher/unzippedConfiguration/conf.d/enabled_vhosts/brandA.vhost -> ../available_vhosts/brandA.vhost
/tmp/dispatcher/unzippedConfiguration/conf.dispatcher.d/enabled_farms/default.farm -> ../available_farms/default.farm
/tmp/dispatcher/unzippedConfiguration/conf.dispatcher.d/enabled_farms/brandA.farm -> ../available_farms/brandA.farm
Not sure why the default.farm symlink is being read but not default.vhost when both are created using same commands in linux. (ln -s src target)