Skip to content
Snippets Groups Projects
Commit acddbd21 authored by Thiemo Belmega's avatar Thiemo Belmega
Browse files

Fix bug in database url generation

parent 6f395045
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,8 @@ public class ToolUpProperties {
"/" +
getProperties().getProperty(KEY_SCHEMA) +
"?user=" +
getProperties().getProperty(KEY_USERNAME + "&pw=") +
getProperties().getProperty(KEY_USERNAME) +
"&pw=" +
getProperties().getProperty(KEY_PASSWORD);
}
return DATABASE_URL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment