Skip to content

Commit

Permalink
Merge pull request #4417 from vgteam/glenn
Browse files Browse the repository at this point in the history
fix validate bug on protobuf graphs
  • Loading branch information
adamnovak authored Oct 30, 2024
2 parents 4ee01a5 + 0290dd2 commit cffb283
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/subcommand/validate_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ int main_validate(int argc, char** argv) {
if (!gam_only) {
VG* vg_graph = dynamic_cast<VG*>(graph.get());
if (vg_graph != nullptr) {
if (!vg_graph->is_valid(true, true, check_orphans, true)) {
if (!vg_graph->is_valid(true, true, true, check_orphans)) {
valid_graph = false;
}
}
Expand Down

1 comment on commit cffb283

@adamnovak
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vg CI tests complete for merge to master. View the full report here.

16 tests passed, 0 tests failed and 0 tests skipped in 17182 seconds

Please sign in to comment.