We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3abb6db + 6641d23 commit af7adffCopy full SHA for af7adff
reframe/core/config.py
@@ -269,7 +269,7 @@ def _detect_system(self):
269
with open('/etc/xthostname') as fp:
270
hostname = fp.read()
271
else:
272
- hostname = socket.gethostname()
+ hostname = socket.getfqdn()
273
274
getlogger().debug(
275
f'Looking for a matching configuration entry '
reframe/frontend/cli.py
@@ -742,7 +742,7 @@ def print_infoline(param, value):
742
'cmdline': ' '.join(sys.argv),
743
'config_file': rt.site_config.filename,
744
'data_version': runreport.DATA_VERSION,
745
- 'hostname': socket.gethostname(),
+ 'hostname': socket.getfqdn(),
746
'prefix_output': rt.output_prefix,
747
'prefix_stage': rt.stage_prefix,
748
'user': osext.osuser(),
0 commit comments