Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions appengine/standard/taskqueue/counter/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,12 @@

from google.appengine.ext import ndb
import webapp2
from application import Counter


COUNTER_KEY = 'default counter'


class Counter(ndb.Model):
count = ndb.IntegerProperty(indexed=False)


class UpdateCounterHandler(webapp2.RequestHandler):
def post(self):
amount = int(self.request.get('amount'))
Expand Down