Bug 240533 - [git-webkit] pr fails (KeyError: 'e6896ffd9b1a4b6deae32a0098a870ef68f8bddf')
Summary: [git-webkit] pr fails (KeyError: 'e6896ffd9b1a4b6deae32a0098a870ef68f8bddf')
Status: RESOLVED DUPLICATE of bug 236812
Alias: None
Product: WebKit
Classification: Unclassified
Component: Tools / Tests (show other bugs)
Version: WebKit Nightly Build
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords: InRadar
Depends on:
Blocks: 239082
  Show dependency treegraph
 
Reported: 2022-05-17 12:44 PDT by Yury Semikhatsky
Modified: 2023-01-05 16:05 PST (History)
5 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Yury Semikhatsky 2022-05-17 12:44:03 PDT
$ ./Tools/Scripts/git-webkit pr
Branch 'main' set up to track remote branch 'main' from 'origin'.
Traceback (most recent call last):
  File "./Tools/Scripts/git-webkit", line 69, in <module>
    sys.exit(program.main(
  File "/home/yurys/webkit/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/program/__init__.py", line 147, in main
    return parsed.main(
  File "/home/yurys/webkit/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/program/pull_request.py", line 408, in main
    return cls.create_pull_request(repository, args, branch_point)
  File "/home/yurys/webkit/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/program/pull_request.py", line 237, in create_pull_request
    if repository.pull(rebase=True, branch=branch_point.branch):
  File "/home/yurys/webkit/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/local/git.py", line 935, in pull
    commit = self.commit() if self.is_svn or branch else None
  File "/home/yurys/webkit/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/local/git.py", line 650, in commit
    cached_identifier = self.cache.to_identifier(hash=hash, branch=branch) if self.cache else None
  File "/home/yurys/webkit/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/local/git.py", line 295, in to_identifier
    self.populate(branch=branch)
  File "/home/yurys/webkit/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/local/git.py", line 189, in populate
    self._fill(branch)
  File "/home/yurys/webkit/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/local/git.py", line 81, in _fill
    branch_point = int(self._hash_to_identifiers[self._ordered_commits[branch][0]].split('@')[0])
  File "/home/yurys/webkit/Tools/Scripts/libraries/webkitcorepy/webkitcorepy/nested_fuzzy_dict.py", line 53, in __getitem__
    raise KeyError(keyname)
KeyError: 'e6896ffd9b1a4b6deae32a0098a870ef68f8bddf'
Comment 1 Yury Semikhatsky 2022-05-17 12:44:35 PDT
`git show e6896ffd9b1a4b6deae32a0098a870ef68f8bddf` displays the commit in the local checkout.
Comment 2 Yury Semikhatsky 2022-05-17 13:11:00 PDT
For some reason the scripts thought that the default_branch was master in my repo even though I don't have master there. Managed to fix it by running


git symbolic-ref refs/remotes/origin/HEAD refs/remotes/origin/main
 
Which added missing origin/HEAD reference.
Comment 3 Yury Semikhatsky 2022-05-17 13:12:29 PDT
Jonathan, I'm fine with closing this bug since the problem is solved for me but perhaps it is something that `git-webkit setup` could handle?
Comment 4 Olivier Blin 2022-05-19 01:27:42 PDT
This happened to me as well, after starting from an old git.webkit.org fork, and setting up a new origin remote for the github repo.

Thanks for the tip Yury.
Comment 5 Yury Semikhatsky 2022-05-19 12:31:04 PDT
(In reply to Olivier Blin from comment #4)
> This happened to me as well, after starting from an old git.webkit.org fork,
> and setting up a new origin remote for the github repo.
> 
> Thanks for the tip Yury.

Glad that it helped someone else. In my other checkout I got the same error and had to take extra measures to ensure the scripts do not try to pick master as the base branch. I did the following (not sure what was required and what not):

git branch -D master
git branch -rd origin/master
git config --unset branch.master.remote
git config --unset branch.master.merge
git config --global init.defaultBranch main

# Manually deleted "master" entry from
.git/identifiers.json
Comment 6 Fujii Hironori 2022-05-19 17:50:02 PDT
Does https://github.com/WebKit/WebKit/commit/f0527ad4230c903a9a8a53aee3f3cc53bf1b9c33 solve this bug?
Comment 7 Olivier Blin 2022-05-20 02:03:35 PDT
I still get an error, but with an empty commit now.
I have to use --no-rebase to get it working.

$ LC_ALL=C ./Tools/Scripts/git-webkit pr -v --no-add
INFO:webkitscmpy:    Found 1 commit...
Branch 'main' set up to track remote branch 'main' from 'origin'.
INFO:webkitscmpy:Using committed changes...
INFO:webkitscmpy:Rebasing 'eng/GLib-Fix-typo-in-WebKitUserMediaPermissionRequest-description' on 'main'...
From github.com:WebKit/WebKit
 * branch                      main       -> FETCH_HEAD
Current branch eng/GLib-Fix-typo-in-WebKitUserMediaPermissionRequest-description is up to date.
Traceback (most recent call last):
  File "./Tools/Scripts/git-webkit", line 69, in <module>
    sys.exit(program.main(
  File "/home/blino/vc/webkit.org/WebKit/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/program/__init__.py", line 147, in main
    return parsed.main(
  File "/home/blino/vc/webkit.org/WebKit/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/program/pull_request.py", line 438, in main
    return cls.create_pull_request(repository, args, branch_point)
  File "/home/blino/vc/webkit.org/WebKit/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/program/pull_request.py", line 265, in create_pull_request
    if repository.pull(rebase=True, branch=branch_point.branch):
  File "/home/blino/vc/webkit.org/WebKit/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/local/git.py", line 946, in pull
    self.cache.clear(self.branch)
  File "/home/blino/vc/webkit.org/WebKit/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/local/git.py", line 213, in clear
    self._fill(branch)
  File "/home/blino/vc/webkit.org/WebKit/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/local/git.py", line 80, in _fill
    branch_point = int(self._hash_to_identifiers[self._ordered_commits[branch][0]].split('@')[0])
  File "/home/blino/vc/webkit.org/WebKit/Tools/Scripts/libraries/webkitcorepy/webkitcorepy/nested_fuzzy_dict.py", line 53, in __getitem__
    raise KeyError(keyname)
KeyError: ''
Comment 8 Radar WebKit Bug Importer 2022-05-24 12:44:15 PDT
<rdar://problem/93852009>
Comment 9 Jonathan Bedard 2023-01-05 16:04:48 PST
This is https://bugs.webkit.org/show_bug.cgi?id=236812, I believe.
Comment 10 Jonathan Bedard 2023-01-05 16:05:03 PST

*** This bug has been marked as a duplicate of bug 236812 ***