Changeset 27683
- Timestamp:
- 04/05/23 13:24:19 (2 years ago)
- Location:
- issm/trunk-jpl/src/m/solve
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/solve/waitonlock.m
r27262 r27683 51 51 command = [command ' -i ' cluster.idfile]; 52 52 end 53 port=0;54 53 if isprop(cluster,'port') && cluster.port, 55 command = [command ' -p ' num2str( port) ' localhost'];54 command = [command ' -p ' num2str(cluster.port) ' localhost']; 56 55 else, 57 56 command = [command ' ' cluster.name]; -
issm/trunk-jpl/src/m/solve/waitonlock.py
r27263 r27683 60 60 if isprop(cluster, 'idfile') and cluster.idfile != '': 61 61 command += ' -i {}'.format(cluster.idfile) 62 port = 063 62 if isprop(cluster, 'port') and cluster.port: 64 command += ' -p {} localhost'.format( port);63 command += ' -p {} localhost'.format(cluster.port); 65 64 else: 66 65 command += ' {}'.format(cluster.name)
Note:
See TracChangeset
for help on using the changeset viewer.