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

Hohensee, Paul hohensee at amazon.com
Tue Feb 26 02:49:24 UTC 2019


Thanks for the info. Not sure the author convention is being followed by Oracle now though, see https://bugs.openjdk.java.net/browse/JDK-8027434 and https://bugs.openjdk.java.net/browse/JDK-8207070 for examples where it's not. Shall I assign the backport issues I pushed to the original authors?

Paul

On 2/25/19, 3:55 PM, "Aleksey Shipilev" <shade at redhat.com> wrote:

    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