samples: net: dns_resolve: Increase socket-related configs

Current NET_SOCKETS_POLL_MAX and ZVFS_OPEN_MAX values were too low for
the sample after the DNS refactoring, making the sample unusable in
current state.

Bump those values accordingly to make the sample functional again.

Signed-off-by: Robert Lubos <robert.lubos@nordicsemi.no>
This commit is contained in:
Robert Lubos 2024-06-19 12:43:59 +02:00 committed by Anas Nashif
parent 1aca4205b8
commit bd4469aa79

View File

@ -14,7 +14,8 @@ CONFIG_NET_IPV6=y
CONFIG_NET_IPV4=y
CONFIG_NET_DHCPV4=n
CONFIG_NET_SOCKETS_POLL_MAX=4
CONFIG_NET_SOCKETS_POLL_MAX=5
CONFIG_ZVFS_OPEN_MAX=5
# Enable the DNS resolver
CONFIG_DNS_RESOLVER=y