warn_only on simoutputs copy back (#681)

fixes #667
by making behavior the same when get() fails on simoutput as
what currently happens for output from the rootfs
This commit is contained in:
Tim Snyder 2020-12-14 22:08:09 -06:00 committed by GitHub
parent 546c86231f
commit 866c43272b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -312,7 +312,7 @@ class FireSimServerNode(FireSimNode):
## e.g. uartlog, memory_stats.csv, etc
remote_sim_run_dir = """/home/centos/sim_slot_{}/""".format(simserverindex)
for simoutputfile in jobinfo.simoutputs:
with StreamLogger('stdout'), StreamLogger('stderr'):
with warn_only(), StreamLogger('stdout'), StreamLogger('stderr'):
get(remote_path=remote_sim_run_dir + simoutputfile, local_path=job_dir)
def get_sim_kill_command(self, slotno):