Skip to content
This repository has been archived by the owner on Aug 26, 2022. It is now read-only.

Commit

Permalink
bug 1462475: Remove zone referencest from comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jwhitlock committed Aug 6, 2018
1 parent 33a3ff7 commit e0bcf46
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 0 additions & 2 deletions kuma/wiki/signal_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ def on_document_save(sender, instance, **kwargs):
"""
A signal handler to be called after saving a document. Does:
- trigger the cache invalidation of both the zone URLs and stack
cache for the given document
- trigger the cache invalidation of the contributor bar for the given
document
- trigger the renewal of the code sample job generation
Expand Down
2 changes: 1 addition & 1 deletion tests/pages/article.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


class ArticlePage(BasePage):
"""A non-zone MDN wiki page."""
"""An MDN wiki page."""

URL_TEMPLATE = '/{locale}/docs/{slug}'
DEFAULT_LOCALE = 'en-US'
Expand Down
8 changes: 4 additions & 4 deletions tests/performance/smoke.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ def media_queries(self):
self.client.get('/en-US/docs/Web/Guide/CSS/Media_queries')

@task(weight=49)
def learn_zone_js_basics(self):
self.client.get('/en-US/Learn/Getting_started_with_the_web/JavaScript_basics')
def learn_js_basics(self):
self.client.get('/en-US/docs/Learn/Getting_started_with_the_web/JavaScript_basics')

@task(weight=30)
def learn_zone_home(self):
self.client.get('/en-US/Learn')
def learn_home(self):
self.client.get('/en-US/docs/Learn')

@task(weight=34)
def ru_home(self):
Expand Down

0 comments on commit e0bcf46

Please sign in to comment.