Skip to content

Commit

Permalink
Merge pull request #68 from testit-tms/hotfix/fix_getting_shared_steps
Browse files Browse the repository at this point in the history
Fixed getting shared steps for QaseExporter.
  • Loading branch information
PavelButuzov authored Sep 2, 2024
2 parents 7138e57 + c229d73 commit 4930915
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Migrators/QaseExporter/Client/Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public async Task<List<QaseSharedStep>> GetSharedSteps()

do
{
var response = await _httpClient.GetAsync($"/v1/shared_step/{_projectKey}");
var response = await _httpClient.GetAsync($"/v1/shared_step/{_projectKey}?limit={maxResults}&offset={startAt}");
if (!response.IsSuccessStatusCode)
{
_logger.LogError(
Expand Down

0 comments on commit 4930915

Please sign in to comment.