From 1ad1a8cb00d7b9f7be03a82fc3241dbc4cad3b4c Mon Sep 17 00:00:00 2001 From: Matt Gode Date: Mon, 9 Apr 2018 08:25:12 -0700 Subject: [PATCH] Add warning to multi upsert method --- client.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client.go b/client.go index f3a5a205..bd4ebe89 100644 --- a/client.go +++ b/client.go @@ -417,6 +417,8 @@ func (c *client) createOrUpsert(ctx context.Context, fieldsToUpdate []string, en // for the operation to succeed. If `fieldsToUpdate` is provided, only a subset // of fields will be updated. Moreover, all entities being upserted must be part // of the same partition otherwise the request will be rejected. +// NOTE: This endpoint is not officially released. No guarantees about correctness +// or performance of this API will be guaranteed until v2.6 is released. func (c *client) MultiUpsert(ctx context.Context, fieldsToUpdate []string, entities ...DomainObject) (MultiResult, error) { if !c.initialized { return nil, &ErrNotInitialized{}