Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuy-node
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
1
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
周少峰
8 years ago
Commit
f3bae4ab41c6c2df8dd01c8fc306b361176a3aae
1 parent
9b03b39f
resolve promise
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
doraemon/middleware/limiter/rules/asynchronous.js
doraemon/middleware/limiter/rules/asynchronous.js
View file @
f3bae4a
...
...
@@ -60,8 +60,10 @@ module.exports = (limiter, policy) => {
if
(
results
[
synchronizeKey
]
>
10
&&
!
results
[
asynchronousKey
])
{
cache
.
setAsync
(
spiderKey
,
1
,
60
*
60
*
24
);
return
Promise
.
re
ject
(
policy
);
return
Promise
.
re
solve
(
policy
);
}
return
Promise
.
resolve
(
true
);
});
};
...
...
Please
register
or
login
to post a comment