From 5cffcabc705e68294192de2d45c8a4d172e084d9 Mon Sep 17 00:00:00 2001 From: Dave Page Date: Tue, 20 Jan 2015 13:56:37 +0000 Subject: [PATCH] Update the runtime to use URLs provided by the utils module. --- runtime/pgAdmin4.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/pgAdmin4.cpp b/runtime/pgAdmin4.cpp index d086b1544..168451c53 100644 --- a/runtime/pgAdmin4.cpp +++ b/runtime/pgAdmin4.cpp @@ -84,7 +84,7 @@ int main(int argc, char * argv[]) } // Generate the app server URL - QString appServerUrl = QString("http://localhost:%1").arg(port); + QString appServerUrl = QString("http://localhost:%1/utils/test").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("/ping"); + url.setPath("/utils/ping"); do {