Skip to content

Commit efd3e0f

Browse files
authored
Merge pull request #138 from CheckPointSW/sync-from-internal-20251027-142319
Sync from internal repo: Sync from internal repo
2 parents fe880b4 + 31e5b75 commit efd3e0f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@chkp/quantum-management-mcp": minor
3+
---
4+
5+
Updated implementation and features, Modified 1 file(s) (synced from internal repository)

packages/management/src/rulebase-parser/parser.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
/**
22
* Core parser if (inlineLayerUids.size > 0 && apiManager) {
3-
console.log(`Found ${inlineLayerUids.size} inline layers to fetch...`);
43
54
for (const uid of inlineLayerUids) {
65
try {
7-
console.log(`Fetching inline layer: ${uid}`);
86
const inlineData = await fetchRulebaseByUid(uid, apiManager);eck Point rulebase JSON
97
*/
108

@@ -50,11 +48,9 @@ export async function parseRulebaseWithInlineLayers(jsonData: any, apiManager?:
5048
let inlineLayersData: { [uid: string]: any } = {};
5149

5250
if (inlineLayerUids.size > 0 && apiManager) {
53-
console.log(`Found ${inlineLayerUids.size} inline layers to fetch...`);
5451

5552
for (const uid of inlineLayerUids) {
5653
try {
57-
console.log(`Fetching inline layer: ${uid}`);
5854
const inlineData = await fetchRulebaseByUid(uid, apiManager);
5955
inlineLayersData[uid] = inlineData;
6056

@@ -81,7 +77,6 @@ export async function parseRulebaseWithInlineLayers(jsonData: any, apiManager?:
8177
if (expandGroups && apiManager) {
8278
const groupUids = collectGroupUids(jsonData, mergedObjectsDictionary);
8379
if (groupUids.size > 0) {
84-
console.log(`Found ${groupUids.size} groups to expand...`);
8580
groupsData = await fetchGroupsRecursively(groupUids, apiManager);
8681
}
8782
}

0 commit comments

Comments
 (0)