File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ def parse_args():
245245 "--request-plane" ,
246246 type = str ,
247247 choices = ["nats" , "http" , "tcp" ],
248- default = os .environ .get ("DYN_REQUEST_PLANE" , "nats " ),
248+ default = os .environ .get ("DYN_REQUEST_PLANE" , "tcp " ),
249249 help = "Determines how requests are distributed from routers to workers. 'tcp' is fastest [nats|http|tcp]" ,
250250 )
251251
Original file line number Diff line number Diff line change @@ -295,7 +295,7 @@ def parse_args():
295295 "--request-plane" ,
296296 type = str ,
297297 choices = ["nats" , "http" , "tcp" ],
298- default = os .environ .get ("DYN_REQUEST_PLANE" , "nats " ),
298+ default = os .environ .get ("DYN_REQUEST_PLANE" , "tcp " ),
299299 help = "Determines how requests are distributed from routers to workers. 'tcp' is fastest [nats|http|tcp]" ,
300300 )
301301
Original file line number Diff line number Diff line change 113113 "flags" : ["--request-plane" ],
114114 "type" : str ,
115115 "choices" : ["nats" , "http" , "tcp" ],
116- "default" : os .environ .get ("DYN_REQUEST_PLANE" , "nats " ),
116+ "default" : os .environ .get ("DYN_REQUEST_PLANE" , "tcp " ),
117117 "help" : "Determines how requests are distributed from routers to workers. 'tcp' is fastest [nats|http|tcp]" ,
118118 },
119119}
Original file line number Diff line number Diff line change @@ -300,7 +300,7 @@ def cmd_line_args():
300300 "--request-plane" ,
301301 type = str ,
302302 choices = ["nats" , "http" , "tcp" ],
303- default = os .environ .get ("DYN_REQUEST_PLANE" , "nats " ),
303+ default = os .environ .get ("DYN_REQUEST_PLANE" , "tcp " ),
304304 help = "Determines how requests are distributed from routers to workers. 'tcp' is fastest [nats|http|tcp]" ,
305305 )
306306
Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ def parse_args() -> Config:
201201 "--request-plane" ,
202202 type = str ,
203203 choices = ["nats" , "http" , "tcp" ],
204- default = os .environ .get ("DYN_REQUEST_PLANE" , "nats " ),
204+ default = os .environ .get ("DYN_REQUEST_PLANE" , "tcp " ),
205205 help = "Determines how requests are distributed from routers to workers. 'tcp' is fastest [nats|http|tcp]" ,
206206 )
207207 parser .add_argument (
You can’t perform that action at this time.
0 commit comments