New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
error when using configureApp(): attempt to apply non-function #271
Comments
|
I am having the same issue. Trying to resize a deployed app due to memory issues, but can't find a way to submit the configureApp command without getting the above error message. Let me know if you were able to resolve this @jorgepda ! |
|
Very interesting! It looks like in Lines 52 to 59 in 31aaf03
names(client)
[1] "status" "currentUser" "accountsForUser" "getAccountUsage"
[5] "getBundle" "updateBundleStatus" "createBundle" "listApplications"
[9] "getApplication" "getApplicationMetrics" "getLogs" "createApplication"
[13] "listApplicationProperties" "setApplicationProperty" "unsetApplicationProperty" "uploadApplication"
[17] "deployApplication" "terminateApplication" "inviteApplicationUser" "addApplicationUser"
[21] "removeApplicationUser" "listApplicationAuthoization" "listApplicationUsers" "listApplicationGroups"
[25] "listApplicationInvitations" "listTasks" "getTaskInfo" "getTaskLogs"
[29] "waitForTask" I was able to determine that It looks like we may be getting a strange > names(lucid)
[1] "status" "currentUser" "accountsForUser" "getAccountUsage"
[5] "getBundle" "updateBundleStatus" "createBundle" "listApplications"
[9] "getApplication" "getApplicationMetrics" "getLogs" "createApplication"
[13] "listApplicationProperties" "setApplicationProperty" "unsetApplicationProperty" "uploadApplication"
[17] "deployApplication" "terminateApplication" "inviteApplicationUser" "addApplicationUser"
[21] "removeApplicationUser" "listApplicationAuthoization" "listApplicationUsers" "listApplicationGroups"
[25] "listApplicationInvitations" "listTasks" "getTaskInfo" "getTaskLogs"
[29] "waitForTask" |
|
I presume the issue is that it is choosing the wrong branch of the |
|
This seems to be the only case of using |
|
Yes, it looks like we think the client isn't Lucid for some reason. This seems like an unusual way to dispatch to the appropriate setter so I've rewritten it. @colearendt and/or @gusmclennan, can you confirm whether this fixes your issue? (You can use |
|
Hey - have run devtools to install dev version, and retested. Getting different error messages now, so some progress... Resubmitted configureApp request specifying "xlarge" size, and got this unexpected response: Wasn't sure whether our current account settings were restricting available size for instances (we are only the Starter plan). So tried to resize instance to Medium, and received this error message: The app we have deployed is a single Shiny R file, that currently works on shinyapps.io, albeit with memory issues since the most recent deployment. FYI - I am running Microsoft R Open v3.5.0, and RStudio v1.0.153 Thanks for your assistance, please let me know when you need me to retest anything. |
|
@gusmclennan the Starter plan cannot use instance types beyond "large". Clearly the error message could use some improvement there. Just to confirm, for the second error your working directory was the project directory? |
|
@jspiewak - yes, I think so. I deployed the app to Shinyapps from my working directory in R Studio (if that answers the question...). |
|
@gusmclennan in that case I need to defer to folks more familiar with the innards of |
|
Hi all. I installed the dev version and was able to run the command I am now getting the following error |
|
Should be fixed now on master -- thanks for reporting! |
I have an app that's successfully deployed on shinyapps.io. When running the following line of code
I get the error message
The text was updated successfully, but these errors were encountered: