Index: service/datastore/pls_impl.go |
diff --git a/service/datastore/pls_impl.go b/service/datastore/pls_impl.go |
index 9a369123c59cf58b2431ab169fa568f2638bcfea..7e584779bd44c56011b4987ff347f5aa53c743fa 100644 |
--- a/service/datastore/pls_impl.go |
+++ b/service/datastore/pls_impl.go |
@@ -340,6 +340,10 @@ func (p *structPLS) GetMeta(key string) (interface{}, error) { |
return val, nil |
} |
+func (p *structPLS) GetMetaDefault(key string, def interface{}) interface{} { |
+ return GetMetaDefaultImpl(p.GetMeta, key, def) |
+} |
+ |
func (p *structPLS) SetMeta(key string, val interface{}) (err error) { |
if err = p.Problem(); err != nil { |
return |