Skip to content

Commit 817209a

Browse files
committed
Revert "drt: error -> warn until ORFS is updated"
This reverts commit bd9b7d9. Signed-off-by: Eder Monteiro <[email protected]>
1 parent bd9b7d9 commit 817209a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/drt/src/TritonRoute.tcl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ proc detailed_route { args } {
122122
set or_k 0
123123
}
124124
if { [info exists keys(-bottom_routing_layer)] } {
125-
utl::warn DRT 509 "-bottom_routing_layer is deprecated.\
125+
utl::error DRT 509 "-bottom_routing_layer is deprecated.\
126126
Use set_routing_layers command instead."
127127
}
128128
if { [info exists keys(-top_routing_layer)] } {
@@ -139,17 +139,17 @@ proc detailed_route { args } {
139139
if { [info exists keys(-remote_host)] } {
140140
set rhost $keys(-remote_host)
141141
} else {
142-
utl::warn DRT 506 "-remote_host is required for distributed routing."
142+
utl::error DRT 506 "-remote_host is required for distributed routing."
143143
}
144144
if { [info exists keys(-remote_port)] } {
145145
set rport $keys(-remote_port)
146146
} else {
147-
utl::warn DRT 507 "-remote_port is required for distributed routing."
147+
utl::error DRT 507 "-remote_port is required for distributed routing."
148148
}
149149
if { [info exists keys(-shared_volume)] } {
150150
set vol $keys(-shared_volume)
151151
} else {
152-
utl::warn DRT 508 "-shared_volume is required for distributed routing."
152+
utl::error DRT 508 "-shared_volume is required for distributed routing."
153153
}
154154
if { [info exists keys(-cloud_size)] } {
155155
set cloudsz $keys(-cloud_size)

0 commit comments

Comments
 (0)