Michael Förderer
Michael Förderer
@gonchik This can be closed.
`/rest/api/content ...` is the URL for the rest API where `/content ...` is the address for the web browser.
I checked the API and the task point is deprecated since version 7.2 it should be changed to comment with severity blocker. Maybe the text is interpreted as HTML which...
Following code should also work: ```python if not self.advanced_mode and start is None and limit is None: for entry in self._get_paged(url, params=params): yield entry ```
Maybe something on the proxy was changed.
@mykytoleg please check the review remarks.
> > @jp-harvey @flichtenheld can we update PR and merge it ? > > @gonchik I've made some of the changes, the others I am not comfortable making without doing...
The for loop and the if can also be combined using `any()` together with comparing `set` objects. ```python if self.backoff_and_retry: if any([(response.status_code, response.reason) == em for em in self.retry_error_matches]): if...
In the BB modules I've introduced a function: https://github.com/atlassian-api/atlassian-python-api/blob/6cd6dd047b09fad1f43f4f2d42a485c96b7d1e84/atlassian/bitbucket/cloud/base.py#L35-L37 https://github.com/atlassian-api/atlassian-python-api/blob/6cd6dd047b09fad1f43f4f2d42a485c96b7d1e84/atlassian/bitbucket/server/base.py#L20 This function is used in the paged APIs and returns a generator to iterate throug the result. Maybe it's possible...
Can you post the exact error?