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

agentx

Package Overview
Dependencies
Maintainers
1
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agentx - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

6

lib/error_parser.js

@@ -60,3 +60,7 @@ 'use strict';

} else {
this.current.extra += line + '\n'; // 不明确的数据,暂时存放
if (this.current) {
if (this.current.extra.length < 250) { // 最多存放250个字符
this.current.extra += line + '\n'; // 不明确的数据,暂时存放
}
}
}

@@ -63,0 +67,0 @@ };

15

lib/orders/error_log.js

@@ -90,8 +90,11 @@ 'use strict';

exports.init = function (config) {
exports.logs = config.error_log;
var logs = config.error_log;
for (var i = 0; i < logs.length; i++) {
var key = logs[i];
parsers.set(key, new Parser(MAX_ERROR_COUNT));
keyMap.set(key, getRealPath(key));
if (config.error_log) {
exports.logs = config.error_log;
var logs = config.error_log;
for (var i = 0; i < logs.length; i++) {
var key = logs[i];
parsers.set(key, new Parser(MAX_ERROR_COUNT));
keyMap.set(key, getRealPath(key));
}
}

@@ -98,0 +101,0 @@ };

{
"name": "agentx",
"version": "1.2.0",
"version": "1.2.1",
"description": "agentx is powered by alinode",

@@ -5,0 +5,0 @@ "scripts": {

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