diff options
| author | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2018-02-05 10:15:44 +0100 |
|---|---|---|
| committer | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2018-02-05 10:15:44 +0100 |
| commit | cd116ba5063b9bfda029196b310207b45e21604a (patch) | |
| tree | b691c05fbfb70fed99f9ee8c8360493af243d6e5 /opendc | |
| parent | cb4eafa88edd4db36f34185c9477e84346bece6e (diff) | |
Implement workflow task dependencies
Diffstat (limited to 'opendc')
| -rw-r--r-- | opendc/models/task.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/opendc/models/task.py b/opendc/models/task.py index 4e6485fb..8ea57b1e 100644 --- a/opendc/models/task.py +++ b/opendc/models/task.py @@ -8,13 +8,12 @@ class Task(Model): 'startTick': 'start_tick', 'totalFlopCount': 'total_flop_count', 'jobId': 'job_id', - 'taskDependencyId': 'task_dependency_id', 'parallelizability': 'parallelizability' } } TABLE_NAME = 'tasks' - COLUMNS = ['id', 'start_tick', 'total_flop_count', 'job_id', 'task_dependency_id', 'parallelizability'] + COLUMNS = ['id', 'start_tick', 'total_flop_count', 'job_id', 'parallelizability'] COLUMNS_PRIMARY_KEY = ['id'] def google_id_has_at_least(self, google_id, authorization_level): |
