Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/state.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-02-06 14:40:44 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-02-06 14:40:44 (GMT)
commitcca8146fc939b564256237eb4fda8e47132673de (patch)
treed3c16679ad3deb6811d83538090bb07d39723463 /devbot/state.py
parentf6bf5049d4f7eb219c548013baf4f4a1dc8f5b09 (diff)
Add b2g
Diffstat (limited to 'devbot/state.py')
-rw-r--r--devbot/state.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/devbot/state.py b/devbot/state.py
index 0a6f7b9..6bf7139 100644
--- a/devbot/state.py
+++ b/devbot/state.py
@@ -103,6 +103,10 @@ def _save_state(name, state):
def _compute_mtime_hash(path):
+ # Too slow to compute the hash
+ if path.endswith("source/b2g"):
+ return "unchanged"
+
# For some reason if path is unicode we
# get a 10x slow down for some directories
path = str(path)