ShinyApp doesn't stop when pressing the stop button at Console

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..

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.