IDEMPIERE-656 ViewLog shows AppsServerOK=false in the the error tab of the about window.
This commit is contained in:
parent
cc0d7302cb
commit
12602cc4ce
|
@ -519,10 +519,9 @@ public class AboutWindow extends Window implements EventListener<Event> {
|
|||
w.setHeight("500px");
|
||||
Textarea textbox = new Textarea();
|
||||
textbox.setDynamicProperty("readonly", "true");
|
||||
textbox.setStyle("width:100%; height: 100%");
|
||||
textbox.setStyle("width:99%; height: 99%; margin: auto; display: inline-block;");
|
||||
w.appendChild(textbox);
|
||||
Text text = new Text(log);
|
||||
textbox.appendChild(text);
|
||||
textbox.setValue(log);
|
||||
AEnv.showCenterScreen(w);
|
||||
}
|
||||
|
||||
|
|
|
@ -712,6 +712,7 @@ public class DB_PostgreSQL implements AdempiereDatabase
|
|||
}
|
||||
|
||||
m_ds = cpds;
|
||||
m_connectionURL = m_ds.getJdbcUrl();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue