How to avoid error log entry when calling few specific methods from WorkspaceManager using responsive thread.
Requirement: get all the "Repository Workspace" names available in the repository of perticular user.
Note: -This invocation is necessary to be done from responsive thread.
Using : findAllWorkspaceNames(final IAuditableHandle scope, IProgressMonitor monitor) from WorkspaceManager class.
Problem : An error is logged with exception "java.lang.IllegalStateException: Long-running operations prohibited on this thread"
this is due to the ThreadCheck implementation in RTC api which prohibits call from responsive thread.
Any suggestion how can we disable this error log entry ?