Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@crawlee/memory-storage

Package Overview
Dependencies
Maintainers
10
Versions
1192
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@crawlee/memory-storage - npm Package Compare versions

Comparing version 3.11.2-beta.15 to 3.11.2-beta.16

6

package.json
{
"name": "@crawlee/memory-storage",
"version": "3.11.2-beta.15",
"version": "3.11.2-beta.16",
"description": "A simple in-memory storage implementation of the Apify API",

@@ -52,3 +52,3 @@ "engines": {

"@apify/log": "^2.4.0",
"@crawlee/types": "3.11.2-beta.15",
"@crawlee/types": "3.11.2-beta.16",
"@sapphire/async-queue": "^1.5.0",

@@ -70,3 +70,3 @@ "@sapphire/shapeshift": "^3.0.0",

},
"gitHead": "304b582238af94b0b9e98d31458e3af696caf4c2"
"gitHead": "69c9baad727994e2c3cfa6ed8d1ea561089c9ada"
}

@@ -266,3 +266,4 @@ "use strict";

const start = Date.now();
const isLocked = (r) => !r.orderNo || r.orderNo > start || r.orderNo < -start;
// If there is no `orderNo` -> request was marked as handled
const isLocked = (r) => r.orderNo && (r.orderNo > start || r.orderNo < -start);
if (!isLocked(internalRequest)) {

@@ -269,0 +270,0 @@ throw new Error(`Request with ID ${id} is not locked in queue ${queue.name ?? queue.id}`);

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc