Skip to content

Commit 0bb583e

Browse files
committed
BF: hostname pattern did not allow dashes
1 parent 9a9ae73 commit 0bb583e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tcl_files/binding.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ proc job_get_binding_active {job_id array_name} {
176176

177177
# e.g. v01701.fritz.box=SCC,v01702.fritz.box=SCC
178178
foreach binding [split $binding_list ","] {
179-
if {[regexp {([a-zA-Z0-9.]+)=([a-zA-Z]+)} $binding all hostname topology_string]} {
179+
if {[regexp {([a-zA-Z0-9.-]+)=([a-zA-Z]+)} $binding all hostname topology_string]} {
180180
set hostname [get_short_hostname $hostname]
181181
set bindings($hostname) $topology_string
182182
}

0 commit comments

Comments
 (0)