Changeset b56eb7e


Ignore:
Timestamp:
Jun 13, 2011 5:06:48 PM (13 years ago)
Author:
Ted Faber <faber@…>
Branches:
axis_example, compt_changes, info-ops, master
Children:
2396f591
Parents:
f93a65c
Message:

Cope with inactive experiments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • axis/Ftopo.java

    rf93a65c rb56eb7e  
    3737        catch (AxisFault f) {
    3838            System.err.println("Error getting info: " + f);
     39            System.exit(20);
     40        }
     41
     42        if (!resp.getExperimentStatus().equals(StatusType.active)) {
     43            System.err.println("Experiment not active");
    3944            System.exit(20);
    4045        }
Note: See TracChangeset for help on using the changeset viewer.