Skip to content

Commit d083fa3

Browse files
committed
Had forgotten to change the name of the method to store client stats
When I created the different stats categories
1 parent cfcba75 commit d083fa3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CFC_WebApp/main/stats.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def setClientMeasurements(user, reportedVals):
2727
for key in stats:
2828
values = stats[key]
2929
for value in values:
30-
storeEntry(user, key, value[0], value[1], metadata)
30+
storeClientEntry(user, key, value[0], value[1], metadata)
3131

3232
def storeClientEntry(user, key, ts, reading, metadata):
3333
logging.debug("storing client entry for user %s, key %s at timestamp %s" % (user, key, ts))

0 commit comments

Comments
 (0)