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
The method survey123.SurveyManager.create() takes > 6 min to run. The issue is in the self._gis.content.folders.get() method. We have >500 folders and it does an API call for every folder. A possible fix would be to return a list with all folders with one API call. So that I can select the folder from this list.
I have made a workaround by rewriting survey123.SurveyManager.create() myself, in which I avoid to use folders.get().
The text was updated successfully, but these errors were encountered:
The method survey123.SurveyManager.create() takes > 6 min to run. The issue is in the self._gis.content.folders.get() method. We have >500 folders and it does an API call for every folder. A possible fix would be to return a list with all folders with one API call. So that I can select the folder from this list.
I have made a workaround by rewriting survey123.SurveyManager.create() myself, in which I avoid to use folders.get().
The text was updated successfully, but these errors were encountered: