Skip to content
Snippets Groups Projects
Commit f12465f0 authored by Olivier Sauter's avatar Olivier Sauter
Browse files

add status if not yet field from non-TCV cases

parent 45399909
No related branches found
No related tags found
1 merge request!192add status_mds (for the mds status) and status for a global status return, based on the "error_status" output of gdat already existing
Pipeline #258160 failed
...@@ -206,6 +206,14 @@ try ...@@ -206,6 +206,14 @@ try
% needed since some substructure have machine name like mapping_for % needed since some substructure have machine name like mapping_for
gdat_data.gdat_params.machine = lower(gdat_data.gdat_params.machine); gdat_data.gdat_params.machine = lower(gdat_data.gdat_params.machine);
end end
if ~isfield(gdat_data,'status')
if exist('error_status','var')
gdat_data.status = error_status;
else
error_status = 0;
gdat_data.status = error_status;
end
end
catch ME_gdat catch ME_gdat
warning(['problems calling gdat_' lower(machine_eff)]); warning(['problems calling gdat_' lower(machine_eff)]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment