Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
0cac6e5d
Commit
0cac6e5d
authored
22 years ago
by
tewk
Browse files
Options
Downloads
Patches
Plain Diff
Fixed bug, to make send_only_node to work with any node and not default to the controllers
added errno definition
parent
56ebb9ef
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/common/slurm_errno.h
+1
-0
1 addition, 0 deletions
src/common/slurm_errno.h
src/common/slurm_protocol_api.c
+1
-1
1 addition, 1 deletion
src/common/slurm_protocol_api.c
with
2 additions
and
1 deletion
src/common/slurm_errno.h
+
1
−
0
View file @
0cac6e5d
...
...
@@ -7,4 +7,5 @@
/* SLRUMD error codes */
#define ESLRUMD_PIPE_ERROR_ON_TASK_SPAWN 90000
#define ESLURMD_KILL_TASK_FAILED 90001
#define ESLURMD_OPENSSL_ERROR 90002
#endif
This diff is collapsed.
Click to expand it.
src/common/slurm_protocol_api.c
+
1
−
1
View file @
0cac6e5d
...
...
@@ -648,7 +648,7 @@ int slurm_send_only_node_msg ( slurm_msg_t * request_msg )
slurm_fd
sockfd
;
/* init message connection for message communication with controller */
if
(
(
sockfd
=
slurm_open_
controller_conn
(
)
)
==
SLURM_SOCKET_ERROR
)
if
(
(
sockfd
=
slurm_open_
msg_conn
(
&
request_msg
->
address
)
)
==
SLURM_SOCKET_ERROR
)
return
SLURM_SOCKET_ERROR
;
/* send request message */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment