From ed0156dbc4c07d7de0f1e35e2a921332e7d527e0 Mon Sep 17 00:00:00 2001 From: Alja Mrak-Tadel Date: Mon, 6 Feb 2017 11:53:24 -0800 Subject: [PATCH] Update CmsShowSearchFiles.cc Duplicate #17415 --- Fireworks/Core/src/CmsShowSearchFiles.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Fireworks/Core/src/CmsShowSearchFiles.cc b/Fireworks/Core/src/CmsShowSearchFiles.cc index d78f506a3ba6e..204660d1d8a9b 100644 --- a/Fireworks/Core/src/CmsShowSearchFiles.cc +++ b/Fireworks/Core/src/CmsShowSearchFiles.cc @@ -107,14 +107,14 @@ CmsShowSearchFiles::CmsShowSearchFiles (const char *filename, SetWindowName(windowname); float x1 = getURLResponseTime("lxplus.cern.ch"); - float x2 = getURLResponseTime("uaf-2.t2.ucsd.edu"); + float x2 = getURLResponseTime("uaf.t2.ucsd.edu"); // printf("timtes %f %f \n", x1, x2); fflush(stdout); std::string path; if (x1 > 0 && x1 < x2) path = Form("http://fireworks.web.cern.ch/fireworks/%d/",fireworks::supportedDataFormatsVersion()[0] ); else if (x2 > 0) - path = Form("http://uaf-2.t2.ucsd.edu/fireworks/%d/", fireworks::supportedDataFormatsVersion()[0]); + path = Form("http://uaf.t2.ucsd.edu/fireworks/%d/", fireworks::supportedDataFormatsVersion()[0]); if (!path.empty()) fwLog(fwlog::kInfo) << "Search files at " << path << "." << std::endl;