Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions app/locustio/confluence/http_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,6 @@ def view_page(locust):
headers=RESOURCE_HEADERS,
catch_response=True)

# 120 rest/helptips/1.0/tips
locust.get('/rest/helptips/1.0/tips', catch_response=True)

# 130 rest/inlinecomments/1.0/comments
r = locust.get(f'/rest/inlinecomments/1.0/comments'
f'?containerId={parsed_page_id}'
Expand Down Expand Up @@ -313,9 +310,6 @@ def view_blog(locust):
headers=RESOURCE_HEADERS,
catch_response=True)

# 360 rest/helptips/1.0/tips
locust.get('/rest/helptips/1.0/tips', catch_response=True)

# 370 rest/inlinecomments/1.0/comments
r = locust.get(f'/rest/inlinecomments/1.0/comments'
f'?containerId={blog_id}'
Expand Down Expand Up @@ -691,9 +685,6 @@ def create_blog():
locust.get(f'/s/en_GB/{build_number}/{keyboard_hash}/_/images/icons/profilepics/add_profile_pic.svg',
catch_response=True)

# 810 rest/helptips/1.0/tips
locust.get('/rest/helptips/1.0/tips', catch_response=True)

# 820 rest/mywork/latest/status/notification/count
locust.get(f'/rest/mywork/latest/status/notification/count'
f'?pageid={content_id}'
Expand Down Expand Up @@ -975,9 +966,6 @@ def create_page():
headers=RESOURCE_HEADERS,
catch_response=True)

# 1190 rest/helptips/1.0/tips
locust.get('/rest/helptips/1.0/tips', catch_response=True)

# 1200 rest/inlinecomments/1.0/comments
locust.get(f'/rest/inlinecomments/1.0/comments'
f'?containerId={locust.session_data_storage["content_id"]}'
Expand Down Expand Up @@ -1234,9 +1222,6 @@ def edit_page():
headers=RESOURCE_HEADERS,
catch_response=True)

# 1510 rest/helptips/1.0/tips
locust.get('/rest/helptips/1.0/tips', catch_response=True)

locust.get(f'/rest/inlinecomments/1.0/comments'
f'?containerId={locust.session_data_storage["content_id"]}'
f'&_={timestamp_int()}',
Expand Down