Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jio-main
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Hardik Juneja
jio-main
Commits
7999c878
Commit
7999c878
authored
Apr 09, 2014
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
metadata `modified` is not mandatory anymore
parent
b1c2d820
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
16 deletions
+16
-16
src/jio.storage/replicatestorage.js
src/jio.storage/replicatestorage.js
+16
-16
No files found.
src/jio.storage/replicatestorage.js
View file @
7999c878
...
@@ -340,14 +340,14 @@
...
@@ -340,14 +340,14 @@
ReplicateStorage
.
prototype
.
post
=
function
(
command
,
metadata
,
option
)
{
ReplicateStorage
.
prototype
.
post
=
function
(
command
,
metadata
,
option
)
{
var
promise_list
=
[],
index
,
length
=
this
.
_storage_list
.
length
;
var
promise_list
=
[],
index
,
length
=
this
.
_storage_list
.
length
;
if
(
!
isDate
(
metadata
.
modified
))
{
//
if (!isDate(metadata.modified)) {
command
.
error
(
//
command.error(
409
,
//
409,
"
invalid 'modified' metadata
"
,
//
"invalid 'modified' metadata",
"
The metadata 'modified' should be a valid date string or date object
"
//
"The metadata 'modified' should be a valid date string or date object"
);
//
);
return
;
//
return;
}
//
}
for
(
index
=
0
;
index
<
length
;
index
+=
1
)
{
for
(
index
=
0
;
index
<
length
;
index
+=
1
)
{
promise_list
[
index
]
=
success
(
promise_list
[
index
]
=
success
(
command
.
storage
(
this
.
_storage_list
[
index
]).
post
(
metadata
,
option
)
command
.
storage
(
this
.
_storage_list
[
index
]).
post
(
metadata
,
option
)
...
@@ -360,14 +360,14 @@
...
@@ -360,14 +360,14 @@
ReplicateStorage
.
prototype
.
put
=
function
(
command
,
metadata
,
option
)
{
ReplicateStorage
.
prototype
.
put
=
function
(
command
,
metadata
,
option
)
{
var
promise_list
=
[],
index
,
length
=
this
.
_storage_list
.
length
;
var
promise_list
=
[],
index
,
length
=
this
.
_storage_list
.
length
;
if
(
!
isDate
(
metadata
.
modified
))
{
//
if (!isDate(metadata.modified)) {
command
.
error
(
//
command.error(
409
,
//
409,
"
invalid 'modified' metadata
"
,
//
"invalid 'modified' metadata",
"
The metadata 'modified' should be a valid date string or date object
"
//
"The metadata 'modified' should be a valid date string or date object"
);
//
);
return
;
//
return;
}
//
}
for
(
index
=
0
;
index
<
length
;
index
+=
1
)
{
for
(
index
=
0
;
index
<
length
;
index
+=
1
)
{
promise_list
[
index
]
=
promise_list
[
index
]
=
command
.
storage
(
this
.
_storage_list
[
index
]).
put
(
metadata
,
option
);
command
.
storage
(
this
.
_storage_list
[
index
]).
put
(
metadata
,
option
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment