Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Conversation

@matiasa123
Copy link
Contributor

No description provided.

@anubhavi25 anubhavi25 self-assigned this Jan 13, 2017
Copy link
Contributor

@anubhavi25 anubhavi25 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like we forgot to remove common systemPropertyVariables from the acceptance profile?

<ACS_CF_DOMAIN>${acs.cf.domain}</ACS_CF_DOMAIN>
<ACS_DEFAULT_ISSUER_ID>${ACS_DEFAULT_ISSUER_ID}</ACS_DEFAULT_ISSUER_ID>
<ACS_SERVICE_ID>predix-acs</ACS_SERVICE_ID>
<ACS_URL>https://${acs.appname}.${cf.base.domain}</ACS_URL>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ACS_URL should be moved out to the systemPropertyVariables section of the common maven-failsafe-plugin configuration you have towards the beginning of the file (since it's also common to every profile)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

<ACS_CF_DOMAIN>${acs.cf.domain}</ACS_CF_DOMAIN>
<ACS_DEFAULT_ISSUER_ID>${ACS_DEFAULT_ISSUER_ID}</ACS_DEFAULT_ISSUER_ID>
<ACS_SERVICE_ID>predix-acs</ACS_SERVICE_ID>
<ACS_URL>https://${acs.appname}.${cf.base.domain}</ACS_URL>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ACS_URL should be moved out to the systemPropertyVariables section of the common maven-failsafe-plugin configuration you have towards the beginning of the file (since it's also common to every profile)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

@matiasa123 matiasa123 force-pushed the US59249 branch 2 times, most recently from f60177b to 76749c6 Compare January 26, 2017 00:03
@matiasa123
Copy link
Contributor Author

@matiasa123 matiasa123 dismissed anubhavi25’s stale review January 26, 2017 02:05

Changes Implemented

<http.nonProxyHosts>${NON_PROXY_HOSTS}</http.nonProxyHosts>
<https.proxyHost>${HTTPS_PROXY_HOST}</https.proxyHost>
<https.proxyPort>${HTTPS_PROXY_PORT}</https.proxyPort>
<ZAC_URL>http://localhost:8888</ZAC_URL>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This can be removed since it should pull the ZAC_URL property value from the common set of properties defined above

<http.nonProxyHosts>${NON_PROXY_HOSTS}</http.nonProxyHosts>
<https.proxyHost>${HTTPS_PROXY_HOST}</https.proxyHost>
<https.proxyPort>${HTTPS_PROXY_PORT}</https.proxyPort>
<ZAC_URL>http://localhost:8888</ZAC_URL>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This can be removed since it should pull the ZAC_URL property value from the common set of properties defined above


function usage {
echo "Usage: source ./$( basename "$( readlink -f "${BASH_SOURCE[0]}" )" ) [-s <maven_settings_file>]"
echo "Usage: source ./$( basename "$( python -c "import os; print os.path.abspath('${BASH_SOURCE[0]}')" )" ) [-s <maven_settings_file>]"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These changes should not be here since a rebase doesn't introduce a merge commit. Should be correctable via a git reset --hard back to the commit one before the erroneous merge commit and force-pushing?

export DB_USERNAME='postgres'
export DB_PASSWORD='postgres'
export DIR=$( dirname "$( readlink -f "${BASH_SOURCE[0]}" )" )
export DIR=$( dirname "$( python -c "import os; print os.path.abspath('${BASH_SOURCE[0]}')" )" )
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See comment above re. the erroneous merge commit


export SPRING_PROFILES_ACTIVE='h2,predix,simple-cache,titan'
export DIR=$( dirname "$( readlink -f "${BASH_SOURCE[0]}" )" )
export DIR=$( dirname "$( python -c "import os; print os.path.abspath('${BASH_SOURCE[0]}')" )" )
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See comment above re. the erroneous merge commit


export SPRING_PROFILES_ACTIVE='h2,public,simple-cache,titan'
export DIR=$( dirname "$( readlink -f "${BASH_SOURCE[0]}" )" )
export DIR=$( dirname "$( python -c "import os; print os.path.abspath('${BASH_SOURCE[0]}')" )" )
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See comment above re. the erroneous merge commit


export SPRING_PROFILES_ACTIVE='h2,public,simple-cache'
export DIR=$( dirname "$( readlink -f "${BASH_SOURCE[0]}" )" )
export DIR=$( dirname "$( python -c "import os; print os.path.abspath('${BASH_SOURCE[0]}')" )" )
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See comment above re. the erroneous merge commit

source ./set-env-local.sh

export DIR=$( dirname "$( readlink -f "${BASH_SOURCE[0]}" )" )
export DIR=$( dirname "$( python -c "import os; print os.path.abspath('${BASH_SOURCE[0]}')" )" )
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See comment above re. the erroneous merge commit


# Assumes GNU sed
sed -i "s/localhost:[0-9]\+\/uaa/localhost:${UAA_LOCAL_PORT}\/uaa/" ./acs-integration-tests/uaa/config/login.yml
python <<EOF
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See comment above re. the erroneous merge commit

@matiasa123
Copy link
Contributor Author

matiasa123 commented Jan 27, 2017

Build Status

@matiasa123
Copy link
Contributor Author

matiasa123 commented Jan 27, 2017

Build Status

@matiasa123
Copy link
Contributor Author

Build Status

@matiasa123
Copy link
Contributor Author

Build Status

@matiasa123
Copy link
Contributor Author

All Passed

@matiasa123
Copy link
Contributor Author

Approved by @FrankGasparovic

@matiasa123 matiasa123 dismissed anubhavi25’s stale review January 27, 2017 21:53

Changes implemented

@matiasa123 matiasa123 merged commit e6d1c23 into develop Jan 27, 2017
@matiasa123 matiasa123 deleted the US59249 branch January 27, 2017 21:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants