We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbad99f commit 4438c29Copy full SHA for 4438c29
index.js
@@ -131,15 +131,15 @@ module.exports = function (S) { // Always pass in the ServerlessPlugin Class
131
evt.options,
132
config && config.start
133
),
134
- _spinner = SCli.spinner();;
+ _spinner = SCli.spinner();;
135
if (options.create) {
136
dynamodb.start(options).then(function () {
137
console.log(""); // seperator
138
self.table(evt).then(resolve, reject);
139
});
140
} else {
141
- _spinner.start()
142
- dynamodb.start(options).then(resolve, reject);
+ _spinner.start()
+ dynamodb.start(options, _spinner).then(resolve, reject);
143
}
144
145
0 commit comments