~graphite-dev/graphite/0.9

« back to all changes in this revision

Viewing changes to webapp/graphite/render/evaluator.py

  • Committer: Jason Dixon
  • Date: 2016-06-09 16:58:59 UTC
  • mfrom: (1094.1.4)
  • Revision ID: git-v1:861d27be5453735209f41f9ed70b649da9c58062
Merge pull request #1523 from arielnh56/fixDataRereads

replace _fetchWithBootstrap

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
  elif tokens.call:
27
27
    func = SeriesFunctions[tokens.call.func]
28
28
    args = [evaluateTokens(requestContext, arg) for arg in tokens.call.args]
 
29
    requestContext['args'] = tokens.call.args
29
30
    try:
30
31
      return func(requestContext, *args)
31
32
    except NormalizeEmptyResultError: