[8u] RFA 8204142: AWT hang occurs when sequenced events arrive out of sequence in multiple AppContexts

Aleksey Shipilev shade at redhat.com
Mon Feb 25 23:53:22 UTC 2019


On 2/26/19 12:07 AM, Hohensee, Paul wrote:
> How does one get the original author's name into the backport? Is there a way to override 'hg push'?

I import original patches to mq, that allows me to pick up all metadata at once, including author,
Reviewed-by: lines, etc. It can be modified until the patch is finalized. Something like:

 $ wget http://hg.openjdk.java.net/jdk/jdk/raw-rev/c8071863df80
 $ hg qimport c8071863df80
 $ hg qpush
 <aaaaaah, so many conflicts, resolve>
 $ hg qrefresh
 $ hg qfinish -a

Additionally, this allows to temporarily stack the changeset that cannot be pushed, if it requires
merge:

 $ hg qimport -r "last(all(), 1)"  // no more outstanding pushes!
 $ hg qpop
 $ hg pull -u
 $ hg qpush
 $ hg qfinish -a // et voila, no merge required

-Aleksey




More information about the jdk8u-dev mailing list