File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ def join(ctx: Context) -> None:
87
87
testing/non-production purposes.
88
88
"""
89
89
# maybe in the future we'll have more secure methods
90
- joiner = joinutil .Joiner (ctx .cli .join_marker )
90
+ joiner = joinutil .Joiner (ctx .cli .join_marker , opener = ctx . opener )
91
91
_add_join_sources (joiner , ctx .cli )
92
92
try :
93
93
joiner .join ()
@@ -130,7 +130,7 @@ def must_join(ctx: Context) -> None:
130
130
"""If possible, perform an unattended domain join. Otherwise,
131
131
exit or block until a join has been perfmed by another process.
132
132
"""
133
- joiner = joinutil .Joiner (ctx .cli .join_marker )
133
+ joiner = joinutil .Joiner (ctx .cli .join_marker , opener = ctx . opener )
134
134
if joiner .did_join ():
135
135
print ("already joined" )
136
136
return
You can’t perform that action at this time.
0 commit comments