Changeset 27683


Ignore:
Timestamp:
04/05/23 13:24:19 (2 years ago)
Author:
schlegel
Message:

BUG: waitonlock only passed in value 0 for port

Location:
issm/trunk-jpl/src/m/solve
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/solve/waitonlock.m

    r27262 r27683  
    5151                        command = [command ' -i ' cluster.idfile];
    5252                end
    53                 port=0;
    5453                if isprop(cluster,'port') && cluster.port,
    55                         command = [command ' -p ' num2str(port) ' localhost'];
     54                        command = [command ' -p ' num2str(cluster.port) ' localhost'];
    5655                else,
    5756                        command = [command ' ' cluster.name];
  • issm/trunk-jpl/src/m/solve/waitonlock.py

    r27263 r27683  
    6060            if isprop(cluster, 'idfile') and cluster.idfile != '':
    6161                command += ' -i {}'.format(cluster.idfile)
    62             port = 0
    6362            if isprop(cluster, 'port') and cluster.port:
    64                 command += ' -p {} localhost'.format(port);
     63                command += ' -p {} localhost'.format(cluster.port);
    6564            else:
    6665                command += ' {}'.format(cluster.name)
Note: See TracChangeset for help on using the changeset viewer.