06 Jun 2022 04:42 AM
when setting my variables within the tomcat env file, I am attempting to set the department and environment similar to the example above but only the first setting shows up within the properties and tags section. I do just need a space between the variables right? Or is something wrong. example:
export DT_CUSTOM_PROP=Stage=Test Dept=Whatever
Solved! Go to Solution.
06 Jun 2022 06:11 AM
Hey jstrick,
Use echo $DT_CUSTOM_PROP to see what it got set to for troubleshooting. Looking at the export you posted it should need apostrophes around the content so it would become:
export DT_CUSTOM_PROP='Stage=Test Dept=Whatever'
06 Jun 2022 01:38 PM
Thank you, the apostrophe is what was needed.