Skip to content

Commit

Permalink
fixes #34 (#35)
Browse files Browse the repository at this point in the history
Signed-Off-By: Carlos Nunez <ncarlos@vmware.com>
  • Loading branch information
carlosonunez-vmw authored and Tasmiya Bano committed Jul 22, 2022
1 parent 9ce3cb3 commit bc684ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/common_utilities.py
Expand Up @@ -7199,7 +7199,7 @@ def getAviIpFqdnDnsMapping(avi_controller_fqdn_ip_dict, dns_server):
try:
for dns in dns_server:
for avi_fqdn, avi_ip in avi_controller_fqdn_ip_dict.items():
listOfCmd = ["dig", dns, avi_fqdn, "+short"]
listOfCmd = ["dig", f"@{dns}", avi_fqdn, "+short"]
fqdn_ip_map = runShellCommandAndReturnOutputAsList(listOfCmd)
current_app.logger.info(fqdn_ip_map)
for ip in fqdn_ip_map[0]:
Expand Down

0 comments on commit bc684ed

Please sign in to comment.