Skip to content

Commit

Permalink
Replace MOD_NAME with mod_name in rsrc and feas
Browse files Browse the repository at this point in the history
Problem: MOD_NAME does not properly set the mod_name var
in the body of the s-f-resource module during t4010 within
the alpine - test-install docker-run-checks CI action.

Solution: Replace the MOD_NAME macro directly with the
mod_name variable in resource.cpp and feasibility.cpp
  • Loading branch information
jacobtkeio committed Jan 19, 2025
1 parent c131a44 commit 9b84f5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resource/modules/feasibility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

#include "resource_match.hpp"

MOD_NAME ("sched-fluxion-feasibility");
const char *mod_name = "sched-fluxion-feasibility";

////////////////////////////////////////////////////////////////////////////////
// Request Handler Prototypes
Expand Down
2 changes: 1 addition & 1 deletion resource/modules/resource.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

#include "resource_match.hpp"

MOD_NAME ("sched-fluxion-resource");
const char *mod_name = "sched-fluxion-resource";

////////////////////////////////////////////////////////////////////////////////
// Request Handler Prototypes
Expand Down

0 comments on commit 9b84f5d

Please sign in to comment.