Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/state.py
diff options
context:
space:
mode:
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)