mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-04-01 02:42:23 -05:00
fix upstream search (registry.npmjs.org)
This commit is contained in:
parent
caabe0ebda
commit
e5ad620a15
1 changed files with 6 additions and 4 deletions
|
@ -98,7 +98,7 @@ module.exports = function(config, auth, storage) {
|
|||
var received_end = false
|
||||
var response_finished = false
|
||||
var processing_pkgs = 0
|
||||
let firstPackage = true
|
||||
var firstPackage = true
|
||||
|
||||
res.status(200)
|
||||
|
||||
|
@ -114,13 +114,15 @@ module.exports = function(config, auth, storage) {
|
|||
* See: method 'request' in up-storage.js
|
||||
*
|
||||
* If there is no cache in local, NPM will request /-/all, then get response with
|
||||
* _updated: 99999, after this, NPM will request /-/all/since with another magic
|
||||
* number 434592768000
|
||||
* _updated: 99999, 'Date' in response header was Mon, 10 Oct 1983 00:12:48 GMT,
|
||||
* this will make NPM always query from server
|
||||
*
|
||||
* Data structure also different, whel request /-/all, response is an object, but
|
||||
* when request /-/all/since, response is an array
|
||||
*/
|
||||
const respShouldBeArray = req.path.endsWith('/since')
|
||||
var respShouldBeArray = req.path.endsWith('/since')
|
||||
res.set('Date', 'Mon, 10 Oct 1983 00:12:48 GMT')
|
||||
|
||||
if (respShouldBeArray) {
|
||||
res.write('[')
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue