Skip to content

Commit

Permalink
Fixes #72. Removing walltime to minutes conversion.
Browse files Browse the repository at this point in the history
  • Loading branch information
yadudoc committed Aug 2, 2018
1 parent f1e408f commit a5f8376
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libsubmit/providers/torque/torque.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def submit(self, command, blocksize, job_name="parsl.auto"):
job_config["task_blocks"] = self.nodes_per_block * self.tasks_per_node
job_config["nodes_per_block"] = self.nodes_per_block
job_config["tasks_per_node"] = self.tasks_per_node
job_config["walltime"] = wtime_to_minutes(self.walltime)
job_config["walltime"] = self.walltime
job_config["overrides"] = self.overrides
job_config["user_script"] = command

Expand Down

0 comments on commit a5f8376

Please sign in to comment.