Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2946)

Unified Diff: appengine/findit/model/wf_swarming_task.py

Issue 1866883002: [Findit] A huge refactoring and some bug fixing. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Fix nit. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/findit/model/wf_analysis_status.py ('k') | appengine/findit/model/wf_try_job.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/model/wf_swarming_task.py
diff --git a/appengine/findit/model/wf_swarming_task.py b/appengine/findit/model/wf_swarming_task.py
index f065d0de04c7e4612905e38cab50d0aeb5ce6c27..14dc1596f07d9ea4c117165e2589fa9dad790bfd 100644
--- a/appengine/findit/model/wf_swarming_task.py
+++ b/appengine/findit/model/wf_swarming_task.py
@@ -7,7 +7,7 @@ from collections import defaultdict
from google.appengine.ext import ndb
from model.base_build_model import BaseBuildModel
-from model import wf_analysis_status
+from model import analysis_status
class WfSwarmingTask(BaseBuildModel):
@@ -24,7 +24,7 @@ class WfSwarmingTask(BaseBuildModel):
# The status of the swarming task.
status = ndb.IntegerProperty(
- default=wf_analysis_status.PENDING, indexed=False)
+ default=analysis_status.PENDING, indexed=False)
# The revision of the failed build.
build_revision = ndb.StringProperty(indexed=False)
« no previous file with comments | « appengine/findit/model/wf_analysis_status.py ('k') | appengine/findit/model/wf_try_job.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698