Skip to content

Commit

Permalink
fix(weapp/qq): 微信、qq小程序 request 并发数改为 10,fix #5291
Browse files Browse the repository at this point in the history
  • Loading branch information
Chen-jj committed Jan 13, 2020
1 parent 9d7125d commit aba16f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/taro-qq/src/native-api.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
import { cacheDataSet, cacheDataGet } from './data-cache'
import { queryToJson, getUniqueKey } from './util'
const RequestQueue = {
MAX_REQUEST: 5,
MAX_REQUEST: 10,
queue: [],
pendingQueue: [],

Expand Down
2 changes: 1 addition & 1 deletion packages/taro-weapp/src/native-api.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
import { cacheDataSet, cacheDataGet } from './data-cache'
import { queryToJson, getUniqueKey } from './util'
const RequestQueue = {
MAX_REQUEST: 5,
MAX_REQUEST: 10,
queue: [],
pendingQueue: [],

Expand Down

0 comments on commit aba16f0

Please sign in to comment.