diff options
| author | Nicole Vreden <damba@mecka.net> | 2009-12-03 00:47:24 +0100 |
|---|---|---|
| committer | Nicole Vreden <damba@mecka.net> | 2009-12-03 00:47:24 +0100 |
| commit | f66d7864e9482baf108a557665263a1fd794b403 (patch) | |
| tree | c4073d728b42d4e63eae9daf3efa5d23ed60cc56 | |
| parent | 07a2982480cb72a7ff7049e0d82ee45f833739e0 (diff) | |
AuthPlugin: use standard postgresqldb port
- changed port from 5433 to 5432
Signed-off-by: Nicole Vreden <damba@mecka.net>
| -rw-r--r-- | src/YalpAuth/YalpPGSqlAuth/YalpAuthPluginImpl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/YalpAuth/YalpPGSqlAuth/YalpAuthPluginImpl.java b/src/YalpAuth/YalpPGSqlAuth/YalpAuthPluginImpl.java index 9412f2c..d7c7a21 100644 --- a/src/YalpAuth/YalpPGSqlAuth/YalpAuthPluginImpl.java +++ b/src/YalpAuth/YalpPGSqlAuth/YalpAuthPluginImpl.java @@ -52,7 +52,7 @@ public class YalpAuthPluginImpl extends AuthPluginInterfacePOA{ orb = _orb; /* t.b.d. read from config xml */ - String db = "jdbc:postgresql://localhost:5433/yalp"; + String db = "jdbc:postgresql://localhost:5432/yalp"; String dbYalpUser = "yalp"; String dbPasswd = "yalp"; |
