Skip to content

Commit b43ff07

Browse files
committed
Fix to instantiation of archive import results, bump
1 parent 11e0e54 commit b43ff07

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

js/gitana/ContainedDataStore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@
182182
var synchronous = (settings.async ? false : true);
183183

184184
// we continue the chain with a job
185-
var chainable = this.getFactory().job(this.getCluster(), "import");
185+
var chainable = this.getFactory().job(this.getCluster(), {});
186186

187187
// fire off import and job queue checking
188188
return this.subchain(chainable).then(function() {

js/gitana/platform/AbstractPlatformObject.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
var synchronous = (settings.async ? false : true);
148148

149149
// we continue the chain with a job
150-
var chainable = this.getFactory().job(this.getCluster(), "import");
150+
var chainable = this.getFactory().job(this.getCluster(), {});
151151

152152
// fire off import and job queue checking
153153
return this.subchain(chainable).then(function() {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gitanajs",
3-
"version": "1.0.316",
3+
"version": "1.0.317",
44
"repository": {
55
"type": "git",
66
"url": "git://github.com/gitana/gitana-javascript-driver.git"

0 commit comments

Comments
 (0)