diff --git a/CHANGES b/CHANGES index 0e89891b..03896986 100644 --- a/CHANGES +++ b/CHANGES @@ -698,6 +698,17 @@ QMUL metadata fix //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +72.11 - HOTFIX + +Rucio copytool update (from M. Lassnig): +- Removed troublesome API fallback (rucio_sitemover) +- Added -v option for more verbose output (rucio_sitemover) + +Bug fix: +- Changed logger.warning -> pUtil.tolog in detect_client_location(), reported by Javier Sanchez Martinez (pilot) + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + TODO: todo: remove the explicit usages of schedconfig.lfchost and replace with an experiment specific method (getFileCatalog()) diff --git a/PILOTVERSION b/PILOTVERSION index dcc1bbc8..7d4eb68f 100644 --- a/PILOTVERSION +++ b/PILOTVERSION @@ -1 +1 @@ -PICARD 72.10 \ No newline at end of file +PICARD 72.11 \ No newline at end of file diff --git a/pilot.py b/pilot.py index 96c0e6bc..0f330f9a 100644 --- a/pilot.py +++ b/pilot.py @@ -2652,7 +2652,7 @@ def detect_client_location(site): s.connect(("8.8.8.8", 80)) ip = s.getsockname()[0] except Exception as e: - logger.warning('socket() failed to lookup local IP') + pUtil.tolog('socket() failed to lookup local IP') return {'ip': ip, 'fqdn': socket.getfqdn(),