File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -82,9 +82,9 @@ users may find useful:
82
82
convenient for human inspection while still being usable by
83
83
libraries like Shapely.
84
84
* ` session_type ` : ` "single" ` or ` "multi" ` ; if set to ` "single" ` , then each call
85
- to ` connect() ` establishes an exclusive connection to a Wherobots runtime;
86
- if set to "multi", then multiple ` connect() ` calls with the same arguments
87
- and credentials will connect to the sameshared Wherobots runtime;
85
+ to ` connect() ` establishes an exclusive connection to a distinct and dedicated
86
+ Wherobots runtime; if set to "multi", then multiple ` connect() ` calls with the
87
+ same arguments and credentials will connect to the same shared Wherobots runtime;
88
88
` "single" ` is the default.
89
89
90
90
Consider multi-session for potential cost savings, but be mindful of
Original file line number Diff line number Diff line change 23
23
parser .add_argument ("--region" , help = "Region to connect to (ie. aws-us-west-2)" )
24
24
parser .add_argument (
25
25
"--session-type" ,
26
- help = "Type of session to create. 'single' or 'multi' " ,
26
+ help = "Type of session to create" ,
27
27
default = DEFAULT_SESSION_TYPE ,
28
+ choices = [st .value for st in SessionType ],
28
29
)
29
30
parser .add_argument (
30
31
"--debug" ,
You can’t perform that action at this time.
0 commit comments