-
Notifications
You must be signed in to change notification settings - Fork 652
Closed
Labels
api: bigtableIssues related to the Bigtable API.Issues related to the Bigtable API.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.
Milestone
Description
Looks like we don't have the promisified verison of insert which is a bummer because the code ends up looking like...
bigtable.getInstances().then(function(data) {
var instance = data[0][0];
var table = instance.table(...);
table.insert(entries, function(err, insertErrors) {
...
});
});Mixing the promise version and callbacks makes me feel :(
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
api: bigtableIssues related to the Bigtable API.Issues related to the Bigtable API.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.Error or flaw in code with unintended results or allowing sub-optimal usage patterns.