Skip to content

Commit 7effe8f

Browse files
committed
When using verbs transport, run_services now only prepends the domain if it is actually specified in the config. This avoids invalid syntax verbs:///iface:port
1 parent eee5657 commit 7effe8f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/launch/run_services.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ if (( ${use_provdb} == 1 )); then
119119
iface=""
120120
fi
121121
provdb_addr="${iface}:${port}" #can be IP:PORT or ADAPTOR:PORT per libfabric conventions
122-
if [[ ${provdb_engine} == "verbs" ]]; then
122+
if [[ ${provdb_engine} == "verbs" && ${provdb_domain} != "" ]]; then
123123
provdb_addr="${provdb_domain}/${provdb_addr}"
124124
fi
125125
echo "Chimbuko services launching provDB instance ${i} of ${provdb_ninstances} on address ${provdb_addr}"

0 commit comments

Comments
 (0)