comparison piecrust/serving/server.py @ 390:3a184fbc900b

serve: Remove development assert.
author Ludovic Chabant <ludovic@chabant.com>
date Sun, 17 May 2015 08:30:19 -0700
parents f33712c4cfab
children 3e4bb57d8506
comparison
equal deleted inserted replaced
389:b28d94f1f85a 390:3a184fbc900b
339 339
340 # See if this page is known to use sources. If that's the case, 340 # See if this page is known to use sources. If that's the case,
341 # just don't use cached rendered segments for that page (but still 341 # just don't use cached rendered segments for that page (but still
342 # use them for pages that are included in it). 342 # use them for pages that are included in it).
343 uri = qp.getUri() 343 uri = qp.getUri()
344 assert uri.rstrip(' /') == req_path.rstrip(' /')
345 entry = self._page_record.getEntry(uri, page_num) 344 entry = self._page_record.getEntry(uri, page_num)
346 if (taxonomy_info is not None or entry is None or 345 if (taxonomy_info is not None or entry is None or
347 entry.used_source_names): 346 entry.used_source_names):
348 cache_key = '%s:%s' % (uri, page_num) 347 cache_key = '%s:%s' % (uri, page_num)
349 app.env.rendered_segments_repository.invalidate(cache_key) 348 app.env.rendered_segments_repository.invalidate(cache_key)