Skip to content

Commit 2ea4452

Browse files
committed
make shinyapps.io auth optional when they are not used
1 parent 2b71a6c commit 2ea4452

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rsconnect/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1059,9 +1059,6 @@ def deploy_app(
10591059
api_key: str,
10601060
insecure: bool,
10611061
cacert: typing.IO,
1062-
account: str,
1063-
token: str,
1064-
secret: str,
10651062
entrypoint,
10661063
exclude,
10671064
new: bool,
@@ -1075,6 +1072,9 @@ def deploy_app(
10751072
extra_files,
10761073
env_vars: typing.Dict[str, str],
10771074
image: str,
1075+
account: str = None,
1076+
token: str = None,
1077+
secret: str = None,
10781078
):
10791079
kwargs = locals()
10801080
kwargs["entrypoint"] = entrypoint = validate_entry_point(entrypoint, directory)

0 commit comments

Comments
 (0)