Skip to content

Commit 8428b24

Browse files
committed
removing rsid from segments listing
1 parent db3f3ba commit 8428b24

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

python-lib/adobe_client.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,7 @@ def next_dimension(self, rsid):
199199

200200
def next_segment(self, rsid):
201201
row_index = 0
202-
for row in self.client.get_next_row("segments", data_path="content", params={
203-
"rsid": rsid
204-
}):
202+
for row in self.client.get_next_row("segments", data_path="content"):
205203
row_index += 1
206204
if row is None:
207205
logger.error("empty row, stopping here")
@@ -241,9 +239,6 @@ def list_report_segments(self, rsid):
241239
segments = []
242240
for row in self.client.get_next_row(
243241
"segments",
244-
params={
245-
"rsid": rsid
246-
},
247242
data_path="content"
248243
):
249244
segments.append(row)

0 commit comments

Comments
 (0)