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");
|
w.setHeight("500px");
|
||||||
Textarea textbox = new Textarea();
|
Textarea textbox = new Textarea();
|
||||||
textbox.setDynamicProperty("readonly", "true");
|
textbox.setDynamicProperty("readonly", "true");
|
||||||
textbox.setStyle("width:100%; height: 100%");
|
textbox.setStyle("width:99%; height: 99%; margin: auto; display: inline-block;");
|
||||||
w.appendChild(textbox);
|
w.appendChild(textbox);
|
||||||
Text text = new Text(log);
|
textbox.setValue(log);
|
||||||
textbox.appendChild(text);
|
|
||||||
AEnv.showCenterScreen(w);
|
AEnv.showCenterScreen(w);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -712,6 +712,7 @@ public class DB_PostgreSQL implements AdempiereDatabase
|
||||||
}
|
}
|
||||||
|
|
||||||
m_ds = cpds;
|
m_ds = cpds;
|
||||||
|
m_connectionURL = m_ds.getJdbcUrl();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue