You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(endpoints): handle progress indicator for async API collection
Ensure API collection runs under a progress indicator to avoid null indicator errors. Refactor endpoint collection logic to use `ProgressManager` for asynchronous execution.
## java.lang.Throwable: Must be executed under progress indicator: com.intellij.openapi.progress.EmptyProgressIndicator@6c3fd0d8 but the process is running under null indicator instead. Please see e.g. ProgressManager.runProcess()
54
+
55
+
```kotlin
56
+
val future =CompletableFuture<String>()
57
+
val task =object:Task.Backgroundable(project, "Loading", false) {
0 commit comments