Skip to content

Commit

Permalink
allow floats in scaleToSeconds()
Browse files Browse the repository at this point in the history
  • Loading branch information
replay authored and deniszh committed Mar 15, 2020
1 parent 4f4458c commit 29bb111
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/graphite/render/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1315,7 +1315,7 @@ def scaleToSeconds(requestContext, seriesList, seconds):
scaleToSeconds.group = 'Transform'
scaleToSeconds.params = [
Param('seriesList', ParamTypes.seriesList, required=True),
Param('seconds', ParamTypes.integer, required=True),
Param('seconds', ParamTypes.float, required=True),
]


Expand Down

0 comments on commit 29bb111

Please sign in to comment.