Skip to content

Commit

Permalink
"Restrict login to IP address" option was removed from Bugzilla's log…
Browse files Browse the repository at this point in the history
…in page. Remove code to set the option to False in bugzilla.py, which is no longer necessary and breaking.

https://bugs.webkit.org/show_bug.cgi?id=249175
<rdar://problem/103269204>

Reviewed by Tim Horton.

* Tools/CISupport/ews-app/ews/common/bugzilla.py:
(BugzillaBeautifulSoup.authenticate):
* Tools/Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
(Bugzilla.authenticate):

Canonical link: https://commits.webkit.org/257762@main
  • Loading branch information
lingcherd committed Dec 12, 2022
1 parent 3c2f658 commit 6475102
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion Tools/CISupport/ews-app/ews/common/bugzilla.py
Expand Up @@ -229,7 +229,6 @@ def authenticate(self):
self.browser.select_form(name="login")
self.browser['Bugzilla_login'] = username
self.browser['Bugzilla_password'] = password
self.browser.find_control("Bugzilla_restrictlogin").items[0].selected = False
try:
response = self.browser.submit()
except:
Expand Down
1 change: 0 additions & 1 deletion Tools/Scripts/webkitpy/common/net/bugzilla/bugzilla.py
Expand Up @@ -568,7 +568,6 @@ def authenticate(self):
self.browser.select_form(name="login")
self.browser['Bugzilla_login'] = username
self.browser['Bugzilla_password'] = password
self.browser.find_control("Bugzilla_restrictlogin").items[0].selected = False
response = self.browser.submit()

match = re.search(b'<title>(.+?)</title>', response.read())
Expand Down

0 comments on commit 6475102

Please sign in to comment.