Skip to content

Commit

Permalink
random priority (#376)
Browse files Browse the repository at this point in the history
  • Loading branch information
mski-iksm committed May 21, 2024
1 parent 4b106c7 commit a31565e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions gokart/task.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import hashlib
import inspect
import os
import random
import types
from importlib import import_module
from logging import getLogger
Expand Down Expand Up @@ -86,6 +87,10 @@ class TaskOnKart(luigi.Task):
)
should_lock_run: bool = ExplicitBoolParameter(default=False, significant=False, description='Whether to use redis lock or not at task run.')

@property
def priority(self):
return random.Random().random() # seed is fixed, so we need to use random.Random().random() instead f random.random()

def __init__(self, *args, **kwargs):
self._add_configuration(kwargs, 'TaskOnKart')
# 'This parameter is dumped into "workspace_directory/log/task_log/" when this task finishes with success.'
Expand Down

0 comments on commit a31565e

Please sign in to comment.