We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f59812 commit 2b63632Copy full SHA for 2b63632
dsqueue.go
@@ -127,7 +127,7 @@ func (q *DSQueue) Name() string {
127
128
func makeKey(item string, counter uint64) datastore.Key {
129
b64Item := base64.RawURLEncoding.EncodeToString([]byte(item))
130
- return datastore.NewKey(fmt.Sprintf("%020d/%s", counter, b64Item))
+ return datastore.NewKey(fmt.Sprintf("%016x/%s", counter, b64Item))
131
}
132
133
// worker run dequeues and enqueues when available.
0 commit comments