Hi
I have a very simple code here but was wondering why do I hit this error when stopping the App via the Console stop button.
ui <-
fluidPage(
)
server <- function(input, output, session) {
}
shinyApp(ui = ui, server = server)
Note: I do have lot of codes within the two frames above. Just that for illustration, I have removed them.
The outcome appeared in the Console is
Listening on http://127.0.0.1:7165
Called from: top level
Browse[1]> Q
Called from: execCallbacks(timeoutSecs, all, loop$id)
Browse[1]> Q
then another tab appear with ..execCallBakcs
! Debug location is approximate because the source is not available.
function (timeoutSecs, runAll, loop_id)
{
.Call("_later_execCallbacks", PACKAGE = "later", timeoutSecs,
runAll, loop_id)
}
Now there is a Continue, Stop button in the Console..