Skip to content
Snippets Groups Projects
Commit b8f36ecb authored by Christopher J. Morrone's avatar Christopher J. Morrone
Browse files

svn merge -r 7143:7145 https://eris.llnl.gov/svn/slurm/branches/slurm-1.0

Remove debugging messages
parent 3886dcde
No related branches found
No related tags found
No related merge requests found
......@@ -161,9 +161,6 @@ slurm_signal_job_step (uint32_t job_id, uint32_t step_id, uint16_t signal)
if (rc != 0)
goto fail2;
for (i = 0; i < step_info->job_step_count; i++) {
printf("slurm_signal_job_step job_id=%u, stepid=%u\n",
step_info->job_steps[i].job_id,
step_info->job_steps[i].step_id);
if (step_info->job_steps[i].job_id == job_id
&& step_info->job_steps[i].step_id == step_id) {
_signal_job_step(&step_info->job_steps[i],
......@@ -201,8 +198,6 @@ _get_step_addresses(const job_step_info_t *step,
char *hostname;
int i;
printf("allocation->node_list = %s\n", allocation->node_list);
printf("step->nodes = %s\n", step->nodes);
alloc_nodes = hostset_create(allocation->node_list);
step_nodes = hostset_create(step->nodes);
step_nodes_it = hostset_iterator_create(step_nodes);
......@@ -467,9 +462,6 @@ slurm_terminate_job_step (uint32_t job_id, uint32_t step_id)
if (rc != 0)
goto fail2;
for (i = 0; i < step_info->job_step_count; i++) {
printf("slurm_terminate_job_step job_id=%u, stepid=%u\n",
step_info->job_steps[i].job_id,
step_info->job_steps[i].step_id);
if (step_info->job_steps[i].job_id == job_id
&& step_info->job_steps[i].step_id == step_id) {
rc = _terminate_job_step(&step_info->job_steps[i],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment