diff --git a/src/Service.gs b/src/Service.gs index a6259a47..f186c617 100644 --- a/src/Service.gs +++ b/src/Service.gs @@ -362,7 +362,11 @@ Service_.prototype.reset = function() { validate_({ 'Property store': this.propertyStore_ }); - this.propertyStore_.deleteProperty(this.getPropertyKey_(this.serviceName_)); + var key = this.getPropertyKey_(this.serviceName_); + this.propertyStore_.deleteProperty(key); + if (this.cache_) { + this.cache_.remove(key); + } }; /**