Skip to content

Commit

Permalink
fixing bug with 23.11
Browse files Browse the repository at this point in the history
  • Loading branch information
lcrownover committed Oct 23, 2024
1 parent 2087aaf commit 35ffcfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/api/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ func (j *JobData) SetJobCPUs(jobcpus *int32) error {
func (d *JobsData) FromResponse(r JobsResp) error {
var err error
for _, j := range r.Jobs {
slog.Debug("jobsresp", "data", fmt.Sprintf("%+v", j))
slog.Debug("jobsresp", "data", fmt.Sprintf("%v", j.JobResources.Cpus))
jd := JobData{}
if err = jd.SetJobAccount(j.Account); err != nil {
return err
Expand Down

0 comments on commit 35ffcfc

Please sign in to comment.