mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Re-organise node structure and loading to make things somewhat more
simple. This also adds the ability to display servers on the treeview.
This commit is contained in:
@@ -84,7 +84,7 @@ int main(int argc, char * argv[])
|
||||
}
|
||||
|
||||
// Generate the app server URL
|
||||
QString appServerUrl = QString("http://localhost:%1/utils/test").arg(port);
|
||||
QString appServerUrl = QString("http://localhost:%1/").arg(port);
|
||||
|
||||
// Now the server should be up, we'll attempt to connect and get a response.
|
||||
// We'll retry in a loop a few time before aborting if necessary. The browser
|
||||
@@ -128,7 +128,7 @@ bool PingServer(QUrl url)
|
||||
QNetworkReply *reply;
|
||||
QVariant redirectUrl;
|
||||
|
||||
url.setPath("/utils/ping");
|
||||
url.setPath("/ping");
|
||||
|
||||
do
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user