Skip to content

Commit

Permalink
Merge pull request #403 from flaviocirillo/fogflow-fcfork
Browse files Browse the repository at this point in the history
Syntax error fix
  • Loading branch information
smartfog authored Sep 18, 2024
2 parents 2feca88 + 2c6101e commit c10648f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master/master.go
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ func (master *Master) SelectWorker(locations []Point) string {
for _, worker := range master.workers {
// if this worker is already overloaded, check the next one
if worker.IsOverloaded() {
master.isDebugEnabled {
if master.isDebugEnabled {
DEBUG.Println("Worker", worker.WID, " has reached its capacity of ", worker.Capacity, " with ", worker.Workload, " tasks running")
}
continue
Expand Down

0 comments on commit c10648f

Please sign in to comment.