wired Browse prompt on shiny stop in Rstudio

Wired Browse prompt occurs when I stop shiny in a wrapped function. Only happens when I wrap the runApp in another function. The app worked fine, but two Browse prompt occurred if I stop the app. If I run outside the wrapper function, no problem. If I change Rstudio debugging from "Break on Code" to "Message Only", no problem happened.

R: 4.0.0
Rstudio: 1.2.5042
OS: Ubuntu 18.04

> test()

Listening on http://127.0.0.1:3347

Called from: top level 
Browse[1]> 

Called from: execCallbacks(timeoutSecs, all, loop$id)
Browse[1]> 

I thought that was my code issue so I opened a fresh R session only loading shiny, but it is not my code. Same problem with the simplest code:

library(shiny)
test = function() {
    runApp()
}
test()

code in ui.R: ui <- fluidPage(), server.R: server <- function(input, output, session) {}, nothing more.

I think the same issue as here

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