Commit b6814a14 authored by Yuan's avatar Yuan
Browse files

bugfixes

parent e3d18efd
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
/*global require,module,process*/

const datastore = require('@google-cloud/datastore');
const Datastore = require('@google-cloud/datastore');
const winston = require('winston');

class GoogleDatastoreDocumentStore {
@@ -15,7 +15,7 @@ class GoogleDatastoreDocumentStore {
  // Save file in a key
  set(key, data, callback, skipExpire) {
    var now = new Date();
    var expireTime = skipExpire ? null : new Date(now.getTime() + this.expire * 1000;
    var expireTime = skipExpire ? null : new Date(now.getTime() + this.expire * 1000);
    
    var taskKey = this.datastore.key([this.kind, key])
    var task = {
@@ -70,7 +70,7 @@ class GoogleDatastoreDocumentStore {
              },
              {
                name: 'expiration',
                value: new Date(now.getTime() + this.expire * 1000;
                value: new Date(now.getTime() + this.expire * 1000)
              }
            ]
          };
@@ -88,5 +88,6 @@ class GoogleDatastoreDocumentStore {
        callback(false);
    });
  }
}

module.exports = GoogleDatastoreDocumentStore;