Skip to content

Commit

Permalink
fix graph dependencie does not have is_test set to False (#3311)
Browse files Browse the repository at this point in the history
* fix graph

* Update CHANGELOG.md

Co-authored-by: dorschw <[email protected]>

---------

Co-authored-by: dorschw <[email protected]>
  • Loading branch information
eyalpalo and dorschw authored Jul 18, 2023
1 parent 541be20 commit 85f8488
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
## Unreleased
* Calling **format** with the `-d` flag now removes test playbooks testing the deprecated content from conf.json.
* Fixed an issue where in some cases the **split** command did not remove pack version note from the script.
* Fixed an issue where **validate** would not properly detect dependencies of core packs.

## 1.17.2
* Fixed an issue where **lint** and **validate** commands failed on integrations and scripts that use docker images that are not available in the Docker Hub but exist locally.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ def build_depends_on_relationships_query() -> str:
// Create the relationship, and mark as "from_metadata"
CREATE (p1)-[r:{RelationshipType.DEPENDS_ON}{{
mandatorily: rel_data.mandatorily,
from_metadata: true
from_metadata: true,
is_test: false
}}]->(p2)
RETURN count(r) AS relationships_merged"""

Expand Down

0 comments on commit 85f8488

Please sign in to comment.