[yang-models] Removing sonic-acl import from sonic-nat.yang (#8632)

#### Why I did it
Fixing issue [[sonic-utilities] Unit test failed when building sonic-utilities #1761](https://github.com/Azure/sonic-utilities/issues/1761)

Importing `sonic-acl` caused getting references by `backlinks()` to break, 

#### How I did it
solution is to comment out the importing statement as it is not used anyway.

#### How to verify it
Ran sonic-utilities unit-tests locally after the fix, and all passed.
This commit is contained in:
Mohamed Ghoneim 2021-09-01 07:29:17 -07:00 committed by GitHub
parent 0ab28bfd3d
commit 3fa8c2595f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,9 +7,10 @@ module sonic-nat {
prefix inet;
}
import sonic-acl {
prefix sacl;
}
// Comment sonic-acl import here until libyang back-links issue is resolved for ACL_TABLE leaf reference.
// import sonic-acl {
// prefix sacl;
// }
import sonic-types {
prefix stypes;