Skip to content

Commit

Permalink
Web: Fix for Run with local Users
Browse files Browse the repository at this point in the history
  • Loading branch information
danjasuw committed Apr 24, 2017
1 parent d6660b3 commit 8b21800
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion database_scripts/install/insert_initial_user.sql
Expand Up @@ -3,7 +3,7 @@
USE proxl ;

-- This will create an initial user in the "proxl" database
-- The initial user will have user id "initial_user_mgmt_central_user"
-- The initial user will have user id "initial_proxl_user"
-- The initial user will have password "FJS483792nzmv,xc4#&@(!VMKSDL"

-- This is required to have an 'id' of 1. There is hard coding in the app for this id of 1.
Expand Down
Expand Up @@ -58,13 +58,13 @@ public void populateProxlConfigFileValuesFromConfigFiles() throws IOException, P
// log.error( msg );
// throw new ProxlWebappConfigException( msg );
// }

if ( StringUtils.isEmpty( proxlConfigFileValues.getRequestingWebappIdentifier() ) ) {
String msg = "Property '" + PROPERTY_NAME__PROXL_WEBAPP_IDENTIFIER_FOR_USER_ACCOUNT_WEB_APP + "' must have a value in "
+ "properties file: '" + CONFIG_DEFAULTS_FILENAME + "'.";
log.error( msg );
throw new ProxlWebappConfigException( msg );
}
//
// if ( StringUtils.isEmpty( proxlConfigFileValues.getRequestingWebappIdentifier() ) ) {
// String msg = "Property '" + PROPERTY_NAME__PROXL_WEBAPP_IDENTIFIER_FOR_USER_ACCOUNT_WEB_APP + "' must have a value in "
// + "properties file: '" + CONFIG_DEFAULTS_FILENAME + "'.";
// log.error( msg );
// throw new ProxlWebappConfigException( msg );
// }

log.warn( "INFO: '" + PROPERTY_NAME__USER_ACCOUNT_WEB_APP_URL + "' has value: "
+ proxlConfigFileValues.getUserAccountServerURLandAppContext() );
Expand Down

0 comments on commit 8b21800

Please sign in to comment.