Skip to content

Commit

Permalink
Add default value for punch job time
Browse files Browse the repository at this point in the history
  • Loading branch information
mickours committed Apr 26, 2024
1 parent 77fcabc commit 81813b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bebida-shaker.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ func main() {
params = Parameters{
maxPendingPunchJob: getIntEnv("BEBIDA_MAX_PENDING_PUNCH_JOB", 2),
// FIXME: Only works on homogeneous cluster! Should be asked to the HPC scheduler
coresPerNode: getIntEnv("BEBIDA_CORE_PER_NODES", 16),
coresPerNode: getIntEnv("BEBIDA_CORES_PER_NODE", 16),
defaultPunchTime: getIntEnv("BEBIDA_PUNCH_JOB_DEFAULT_WALLTIME", 600),
HPCSchedulerType: getStrEnv("BEBIDA_HPC_SCHEDULER_TYPE", "OAR"),
}
log.Infof("Parameters: %+v\n", params)
Expand Down

0 comments on commit 81813b4

Please sign in to comment.