Skip to content

Commit

Permalink
Merge pull request #189 from SANDAG/ABM3_develop_xborder_wait_fix
Browse files Browse the repository at this point in the history
Add common config arg to xborder wait call
  • Loading branch information
bhargavasana authored Aug 21, 2024
2 parents be54b99 + 23273bc commit 8ec037e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/asim/scripts/xborder/cross_border_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ def assign_hh_p_to_tours(tours, persons):
print('UPDATING POE WAIT TIMES: ITER {0}'.format(i))
process = subprocess.Popen([
'python', '-u', 'src/asim/simulation.py', '-s',
'wait_time_mode.yaml', '-c', config_dir ,'-o', output_dir, '-d', data_dir, '-d', 'output/skims'],
'wait_time_mode.yaml', '-c', config_dir, '-c', common_config_dir,'-o', output_dir, '-d', data_dir, '-d', 'output/skims'],
stdout=sys.stdout, stderr=subprocess.PIPE)
_, stderr = process.communicate()
if process.returncode != 0:
Expand Down

0 comments on commit 8ec037e

Please sign in to comment.