<@U7Q8T8U07> I get the same error when I try to do...
# server
r
@Hawk I get the same error when I try to do below:
Copy code
fun main() {

        if (!run) {
            logger.warn("Skipping AnalyzeDependencyRunner run...")
            return
        }
           try {
            val launch = launch(CommonPool) {
                scanProjects(projectMap, projectRepos, runNumber, projectsScanned)
            }
            launch.join()
        } catch (e: Exception) {
            log.error(e)
        }
    }
What am I missing? If I try with
runBlocking
above works