123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355
2025-09-09 19:17:03
Full thread dump OpenJDK 64-Bit Server VM (21.0.7+6-b1038.58 mixed mode, sharing):
Threads class SMR info:
_java_thread_list=0x000001c03ffa6b60, length=64, elements={
0x000001bf2d4c2ed0, 0x000001bf5887f930, 0x000001bf5888a130, 0x000001bf5888bd00,
0x000001bf5888fa10, 0x000001bf58890470, 0x000001bf58894030, 0x000001bf58899630,
0x000001bf588a0240, 0x000001bf588a2cf0, 0x000001bf5889bd90, 0x000001bf5889b700,
0x000001bfc035e090, 0x000001bfc0365020, 0x000001bfc035e720, 0x000001bfc035edb0,
0x000001bfc0364990, 0x000001bfc0360160, 0x000001bfc03607f0, 0x000001bfc1b9ad70,
0x000001bfc1b9f5a0, 0x000001bfc1b99330, 0x000001bfc1b98ca0, 0x000001bfc1b9ef10,
0x000001bfc1b9a6e0, 0x000001bf01b31a90, 0x000001bf01b306e0, 0x000001bf01b31400,
0x000001bf01b341f0, 0x000001bf01b30d70, 0x000001bf01b34f10, 0x000001bf01b2f9c0,
0x000001c020e54f30, 0x000001c020e57000, 0x000001c032ca0d60, 0x000001c020e57690,
0x000001bf01b327b0, 0x000001c034503f30, 0x000001bfc73bdfb0, 0x000001bfc73c0da0,
0x000001bfc7aef250, 0x000001bfc7af82b0, 0x000001bfc73b8a60, 0x000001bf01b6fca0,
0x000001bf01b71d70, 0x000001bf01b716e0, 0x000001bf01b744d0, 0x000001bf01b7ef70,
0x000001bf5882e0f0, 0x000001bfc73b83d0, 0x000001c03deb0d80, 0x000001bfd4ba0040,
0x000001bfd4ba62b0, 0x000001bfd4ba8380, 0x000001bfd4bac520, 0x000001bfd4ba90a0,
0x000001bf5881fb40, 0x000001bf58827e80, 0x000001bfc7aeff70, 0x000001bfd4bab800,
0x000001c02576f6f0, 0x000001c025772b70, 0x000001c025771130, 0x000001c02576fd80
}
"main" #1 [14452] prio=5 os_prio=0 cpu=1843.75ms elapsed=1778.88s allocated=37649K defined_classes=1912 tid=0x000001bf2d4c2ed0 nid=14452 waiting on condition [0x00000039a06fe000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x000000008183a508> (a kotlinx.coroutines.BlockingCoroutine)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:269)
at kotlinx.coroutines.BlockingCoroutine.joinBlocking(Builders.kt:121)
at kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$BuildersKt__BuildersKt(Builders.kt:85)
at kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking(Builders.kt:53)
at kotlinx.coroutines.BuildersKt.runBlocking(Unknown Source)
at kotlinx.coroutines.BuildersKt__BuildersKt.runBlocking$default(Builders.kt:48)
at kotlinx.coroutines.BuildersKt.runBlocking$default(Unknown Source)
at com.intellij.idea.Main.mainImpl(Main.kt:72)
at com.intellij.idea.Main.main(Main.kt:47)
Locked ownable synchronizers:
- None
"Common-Cleaner" #9 [17352] daemon prio=8 os_prio=1 cpu=46.88ms elapsed=1778.84s allocated=37176B defined_classes=0 tid=0x000001bf5887f930 nid=17352 waiting on condition [0x00000039a0efe000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x000000008182ee10> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:269)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(java.base@21.0.7/AbstractQueuedSynchronizer.java:1852)
at java.lang.ref.ReferenceQueue.await(java.base@21.0.7/ReferenceQueue.java:71)
at java.lang.ref.ReferenceQueue.remove0(java.base@21.0.7/ReferenceQueue.java:143)
at java.lang.ref.ReferenceQueue.remove(java.base@21.0.7/ReferenceQueue.java:218)
at jdk.internal.ref.CleanerImpl.run(java.base@21.0.7/CleanerImpl.java:140)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
at jdk.internal.misc.InnocuousThread.run(java.base@21.0.7/InnocuousThread.java:186)
Locked ownable synchronizers:
- None
"Reference Handler" #10 [10372] daemon prio=10 os_prio=2 cpu=78.12ms elapsed=1778.84s allocated=33520B defined_classes=0 tid=0x000001bf5888a130 nid=10372 waiting on condition [0x00000039a0fff000]
java.lang.Thread.State: RUNNABLE
at java.lang.ref.Reference.waitForReferencePendingList(java.base@21.0.7/Native Method)
at java.lang.ref.Reference.processPendingReferences(java.base@21.0.7/Reference.java:246)
at java.lang.ref.Reference$ReferenceHandler.run(java.base@21.0.7/Reference.java:208)
Locked ownable synchronizers:
- None
"Finalizer" #11 [13480] daemon prio=8 os_prio=1 cpu=15.62ms elapsed=1778.84s allocated=312B defined_classes=0 tid=0x000001bf5888bd00 nid=13480 in Object.wait() [0x00000039a10fe000]
java.lang.Thread.State: WAITING (on object monitor)
at java.lang.Object.wait0(java.base@21.0.7/Native Method)
- waiting on <no object reference available>
at java.lang.Object.wait(java.base@21.0.7/Object.java:366)
at java.lang.Object.wait(java.base@21.0.7/Object.java:339)
at java.lang.ref.NativeReferenceQueue.await(java.base@21.0.7/NativeReferenceQueue.java:48)
at java.lang.ref.ReferenceQueue.remove0(java.base@21.0.7/ReferenceQueue.java:158)
at java.lang.ref.NativeReferenceQueue.remove(java.base@21.0.7/NativeReferenceQueue.java:89)
- locked <0x0000000081823d10> (a java.lang.ref.NativeReferenceQueue$Lock)
at java.lang.ref.Finalizer$FinalizerThread.run(java.base@21.0.7/Finalizer.java:173)
Locked ownable synchronizers:
- None
"Signal Dispatcher" #12 [12580] daemon prio=9 os_prio=2 cpu=0.00ms elapsed=1778.84s allocated=0B defined_classes=0 tid=0x000001bf5888fa10 nid=12580 waiting on condition [0x0000000000000000]
java.lang.Thread.State: RUNNABLE
Locked ownable synchronizers:
- None
"Attach Listener" #13 [11312] daemon prio=5 os_prio=2 cpu=0.00ms elapsed=1778.84s allocated=0B defined_classes=0 tid=0x000001bf58890470 nid=11312 waiting on condition [0x0000000000000000]
java.lang.Thread.State: RUNNABLE
Locked ownable synchronizers:
- None
"Service Thread" #14 [15104] daemon prio=9 os_prio=0 cpu=843.75ms elapsed=1778.83s allocated=0B defined_classes=0 tid=0x000001bf58894030 nid=15104 runnable [0x0000000000000000]
java.lang.Thread.State: RUNNABLE
Locked ownable synchronizers:
- None
"Monitor Deflation Thread" #15 [16796] daemon prio=9 os_prio=0 cpu=0.00ms elapsed=1778.83s allocated=0B defined_classes=0 tid=0x000001bf58899630 nid=16796 runnable [0x0000000000000000]
java.lang.Thread.State: RUNNABLE
Locked ownable synchronizers:
- None
"C2 CompilerThread0" #16 [8344] daemon prio=9 os_prio=2 cpu=353406.25ms elapsed=1778.83s allocated=57048B defined_classes=0 tid=0x000001bf588a0240 nid=8344 waiting on condition [0x0000000000000000]
java.lang.Thread.State: RUNNABLE
No compile task
Locked ownable synchronizers:
- None
"C1 CompilerThread0" #17 [3840] daemon prio=9 os_prio=2 cpu=67546.88ms elapsed=1778.83s allocated=308K defined_classes=0 tid=0x000001bf588a2cf0 nid=3840 waiting on condition [0x0000000000000000]
java.lang.Thread.State: RUNNABLE
No compile task
Locked ownable synchronizers:
- None
"Notification Thread" #18 [16652] daemon prio=9 os_prio=0 cpu=0.00ms elapsed=1778.76s allocated=0B defined_classes=0 tid=0x000001bf5889bd90 nid=16652 runnable [0x0000000000000000]
java.lang.Thread.State: RUNNABLE
Locked ownable synchronizers:
- None
"External Command Listener" #27 [12720] daemon prio=5 os_prio=0 cpu=0.00ms elapsed=1777.35s allocated=384B defined_classes=0 tid=0x000001bf5889b700 nid=12720 runnable [0x00000039a1fff000]
java.lang.Thread.State: RUNNABLE
at sun.nio.ch.UnixDomainSockets.accept0(java.base@21.0.7/Native Method)
at sun.nio.ch.UnixDomainSockets.accept(java.base@21.0.7/UnixDomainSockets.java:173)
at sun.nio.ch.ServerSocketChannelImpl.implAccept(java.base@21.0.7/ServerSocketChannelImpl.java:427)
at sun.nio.ch.ServerSocketChannelImpl.accept(java.base@21.0.7/ServerSocketChannelImpl.java:399)
at com.intellij.platform.ide.bootstrap.DirectoryLock.acceptConnections(DirectoryLock.java:363)
at com.intellij.platform.ide.bootstrap.DirectoryLock$$Lambda/0x000001bf5b0d52e8.run(Unknown Source)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- <0x0000000081fc28f8> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)
"DefaultDispatcher-worker-5" #29 [6412] daemon prio=5 os_prio=0 cpu=9500.00ms elapsed=1777.34s allocated=488M defined_classes=625 tid=0x000001bfc035e090 nid=6412 waiting on condition [0x00000039a20ff000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:410)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park(CoroutineScheduler.kt:938)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark(CoroutineScheduler.kt:875)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:810)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:765)
Locked ownable synchronizers:
- None
"kotlinx.coroutines.DefaultExecutor" #30 [8092] daemon prio=5 os_prio=0 cpu=703.12ms elapsed=1777.33s allocated=2949K defined_classes=1 tid=0x000001bfc0365020 nid=8092 runnable [0x00000039a21fe000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x000000008183b000> (a kotlinx.coroutines.DefaultExecutor)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:269)
at kotlinx.coroutines.DefaultExecutor.run(DefaultExecutor.kt:118)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- None
"Java2D Disposer" #32 [14780] daemon prio=10 os_prio=2 cpu=109.38ms elapsed=1777.30s allocated=32592B defined_classes=0 tid=0x000001bfc035e720 nid=14780 waiting on condition [0x00000039a23fe000]
java.lang.Thread.State: WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x0000000081e97a78> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
at java.util.concurrent.locks.LockSupport.park(java.base@21.0.7/LockSupport.java:371)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(java.base@21.0.7/AbstractQueuedSynchronizer.java:519)
at java.util.concurrent.ForkJoinPool.unmanagedBlock(java.base@21.0.7/ForkJoinPool.java:4013)
at java.util.concurrent.ForkJoinPool.managedBlock(java.base@21.0.7/ForkJoinPool.java:3961)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(java.base@21.0.7/AbstractQueuedSynchronizer.java:1712)
at java.lang.ref.ReferenceQueue.await(java.base@21.0.7/ReferenceQueue.java:67)
at java.lang.ref.ReferenceQueue.remove0(java.base@21.0.7/ReferenceQueue.java:158)
at java.lang.ref.ReferenceQueue.remove(java.base@21.0.7/ReferenceQueue.java:234)
at sun.java2d.Disposer.run(java.desktop/Disposer.java:145)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- None
"AWT-Shutdown" #33 [4264] prio=5 os_prio=0 cpu=0.00ms elapsed=1777.30s allocated=0B defined_classes=0 tid=0x000001bfc035edb0 nid=4264 in Object.wait() [0x00000039a24ff000]
java.lang.Thread.State: WAITING (on object monitor)
at java.lang.Object.wait0(java.base@21.0.7/Native Method)
- waiting on <no object reference available>
at java.lang.Object.wait(java.base@21.0.7/Object.java:366)
at java.lang.Object.wait(java.base@21.0.7/Object.java:339)
at sun.awt.AWTAutoShutdown.run(java.desktop/AWTAutoShutdown.java:291)
- locked <0x0000000081e97bc8> (a java.lang.Object)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- None
"AWT-Windows" #34 [14616] daemon prio=6 os_prio=0 cpu=92390.62ms elapsed=1777.30s allocated=7338K defined_classes=25 tid=0x000001bfc0364990 nid=14616 runnable [0x00000039a25ff000]
java.lang.Thread.State: RUNNABLE
at sun.awt.windows.WToolkit.eventLoop(java.desktop/Native Method)
at sun.awt.windows.WToolkit.run(java.desktop/WToolkit.java:371)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- None
"AWT-EventQueue-0" #38 [10000] prio=10 os_prio=2 cpu=173250.00ms elapsed=1777.19s allocated=7936M defined_classes=15064 tid=0x000001bfc0360160 nid=10000 waiting on condition [0x00000039a28fe000]
java.lang.Thread.State: WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x0000000081aefb70> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
at java.util.concurrent.locks.LockSupport.park(java.base@21.0.7/LockSupport.java:371)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(java.base@21.0.7/AbstractQueuedSynchronizer.java:519)
at java.util.concurrent.ForkJoinPool.unmanagedBlock(java.base@21.0.7/ForkJoinPool.java:4013)
at java.util.concurrent.ForkJoinPool.managedBlock(java.base@21.0.7/ForkJoinPool.java:3961)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(java.base@21.0.7/AbstractQueuedSynchronizer.java:1712)
at java.awt.EventQueue.getNextEvent(java.desktop/EventQueue.java:573)
at com.intellij.ide.IdeEventQueue.getNextEvent(IdeEventQueue.kt:379)
at java.awt.EventDispatchThread.pumpOneEventForFilters(java.desktop/EventDispatchThread.java:194)
at java.awt.EventDispatchThread.pumpEventsForFilter(java.desktop/EventDispatchThread.java:128)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(java.desktop/EventDispatchThread.java:117)
at java.awt.EventDispatchThread.pumpEvents(java.desktop/EventDispatchThread.java:113)
at java.awt.EventDispatchThread.pumpEvents(java.desktop/EventDispatchThread.java:105)
at java.awt.EventDispatchThread.run(java.desktop/EventDispatchThread.java:92)
Locked ownable synchronizers:
- None
"Kernel event loop thread 7p01nkisqgm2b84lunq9" #39 [8156] daemon prio=10 os_prio=2 cpu=421.88ms elapsed=1777.00s allocated=8541K defined_classes=342 tid=0x000001bfc03607f0 nid=8156 waiting on condition [0x00000039a29fe000]
java.lang.Thread.State: WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x0000000081eaae98> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
at java.util.concurrent.locks.LockSupport.park(java.base@21.0.7/LockSupport.java:371)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(java.base@21.0.7/AbstractQueuedSynchronizer.java:519)
at java.util.concurrent.ForkJoinPool.unmanagedBlock(java.base@21.0.7/ForkJoinPool.java:4013)
at java.util.concurrent.ForkJoinPool.managedBlock(java.base@21.0.7/ForkJoinPool.java:3961)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(java.base@21.0.7/AbstractQueuedSynchronizer.java:1712)
at java.util.concurrent.LinkedBlockingQueue.take(java.base@21.0.7/LinkedBlockingQueue.java:435)
at java.util.concurrent.ThreadPoolExecutor.getTask(java.base@21.0.7/ThreadPoolExecutor.java:1070)
at java.util.concurrent.ThreadPoolExecutor.runWorker(java.base@21.0.7/ThreadPoolExecutor.java:1130)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(java.base@21.0.7/ThreadPoolExecutor.java:642)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- None
"DefaultDispatcher-worker-6" #53 [680] daemon prio=5 os_prio=0 cpu=7828.12ms elapsed=1776.93s allocated=486M defined_classes=482 tid=0x000001bfc1b9ad70 nid=680 waiting on condition [0x00000039a36ff000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:410)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park(CoroutineScheduler.kt:938)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark(CoroutineScheduler.kt:875)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:810)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:765)
Locked ownable synchronizers:
- None
"DefaultDispatcher-worker-2" #54 [5544] daemon prio=5 os_prio=0 cpu=14156.25ms elapsed=1776.93s allocated=1188M defined_classes=2677 tid=0x000001bfc1b9f5a0 nid=5544 waiting on condition [0x00000039a37ff000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:410)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park(CoroutineScheduler.kt:938)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark(CoroutineScheduler.kt:875)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:810)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:765)
Locked ownable synchronizers:
- None
"PeriodicMetricReader" #56 [5440] daemon prio=5 os_prio=0 cpu=1250.00ms elapsed=1775.74s allocated=76408K defined_classes=105 tid=0x000001bfc1b99330 nid=5440 waiting on condition [0x00000039a3afe000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x00000000832a0a30> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:269)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(java.base@21.0.7/AbstractQueuedSynchronizer.java:1763)
at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(java.base@21.0.7/ScheduledThreadPoolExecutor.java:1182)
at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(java.base@21.0.7/ScheduledThreadPoolExecutor.java:899)
at java.util.concurrent.ThreadPoolExecutor.getTask(java.base@21.0.7/ThreadPoolExecutor.java:1070)
at java.util.concurrent.ThreadPoolExecutor.runWorker(java.base@21.0.7/ThreadPoolExecutor.java:1130)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(java.base@21.0.7/ThreadPoolExecutor.java:642)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- None
"Coroutines Debugger Cleaner" #57 [6104] daemon prio=5 os_prio=0 cpu=0.00ms elapsed=1775.73s allocated=5536B defined_classes=0 tid=0x000001bfc1b98ca0 nid=6104 waiting on condition [0x00000039a3bfe000]
java.lang.Thread.State: WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x00000000832a3088> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
at java.util.concurrent.locks.LockSupport.park(java.base@21.0.7/LockSupport.java:371)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(java.base@21.0.7/AbstractQueuedSynchronizer.java:519)
at java.util.concurrent.ForkJoinPool.unmanagedBlock(java.base@21.0.7/ForkJoinPool.java:4013)
at java.util.concurrent.ForkJoinPool.managedBlock(java.base@21.0.7/ForkJoinPool.java:3961)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(java.base@21.0.7/AbstractQueuedSynchronizer.java:1712)
at java.lang.ref.ReferenceQueue.await(java.base@21.0.7/ReferenceQueue.java:67)
at java.lang.ref.ReferenceQueue.remove0(java.base@21.0.7/ReferenceQueue.java:158)
at java.lang.ref.ReferenceQueue.remove(java.base@21.0.7/ReferenceQueue.java:234)
at kotlinx.coroutines.debug.internal.ConcurrentWeakMap.runWeakRefQueueCleaningLoopUntilInterrupted(ConcurrentWeakMap.kt:69)
at kotlinx.coroutines.debug.internal.DebugProbesImpl.startWeakRefCleanerThread$lambda$2(DebugProbesImpl.kt:92)
at kotlinx.coroutines.debug.internal.DebugProbesImpl$$Lambda/0x000001bf5b32ea10.invoke(Unknown Source)
at kotlin.concurrent.ThreadsKt$thread$thread$1.run(Thread.kt:30)
Locked ownable synchronizers:
- None
"JNA Cleaner" #58 [8488] daemon prio=5 os_prio=0 cpu=0.00ms elapsed=1775.17s allocated=101704B defined_classes=0 tid=0x000001bfc1b9ef10 nid=8488 waiting on condition [0x00000039a3cff000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x000000008763b1b0> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:269)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(java.base@21.0.7/AbstractQueuedSynchronizer.java:1852)
at java.lang.ref.ReferenceQueue.await(java.base@21.0.7/ReferenceQueue.java:71)
at java.lang.ref.ReferenceQueue.remove0(java.base@21.0.7/ReferenceQueue.java:143)
at java.lang.ref.ReferenceQueue.remove(java.base@21.0.7/ReferenceQueue.java:218)
at com.sun.jna.internal.Cleaner$CleanerThread.run(Cleaner.java:154)
Locked ownable synchronizers:
- None
"Periodic tasks thread" #59 [1740] daemon prio=5 os_prio=0 cpu=1593.75ms elapsed=1775.09s allocated=14871K defined_classes=0 tid=0x000001bfc1b9a6e0 nid=1740 runnable [0x00000039a3dff000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x000000008763b2d8> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:269)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(java.base@21.0.7/AbstractQueuedSynchronizer.java:1763)
at java.util.concurrent.DelayQueue.take(java.base@21.0.7/DelayQueue.java:255)
at com.intellij.util.concurrency.AppDelayQueue$TransferThread.run(AppDelayQueue.java:83)
Locked ownable synchronizers:
- None
"Netty Builtin Server 1" #61 [15168] daemon prio=5 os_prio=0 cpu=46.88ms elapsed=1774.83s allocated=48088B defined_classes=12 tid=0x000001bf01b31a90 nid=15168 runnable [0x00000039a3fff000]
java.lang.Thread.State: RUNNABLE
at sun.nio.ch.WEPoll.wait(java.base@21.0.7/Native Method)
at sun.nio.ch.WEPollSelectorImpl.doSelect(java.base@21.0.7/WEPollSelectorImpl.java:114)
at sun.nio.ch.SelectorImpl.lockAndDoSelect(java.base@21.0.7/SelectorImpl.java:130)
- locked <0x000000008763b708> (a io.netty.channel.nio.SelectedSelectionKeySet)
- locked <0x000000008763b6a8> (a sun.nio.ch.WEPollSelectorImpl)
at sun.nio.ch.SelectorImpl.select(java.base@21.0.7/SelectorImpl.java:142)
at io.netty.channel.nio.SelectedSelectionKeySetSelector.select(SelectedSelectionKeySetSelector.java:62)
at io.netty.channel.nio.NioIoHandler.select(NioIoHandler.java:646)
at io.netty.channel.nio.NioIoHandler.run(NioIoHandler.java:432)
at io.netty.channel.SingleThreadIoEventLoop.runIo(SingleThreadIoEventLoop.java:203)
at io.netty.channel.SingleThreadIoEventLoop.run(SingleThreadIoEventLoop.java:174)
at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:1123)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- <0x000000008763f668> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)
"fsnotifier.exe" #72 [13912] prio=4 os_prio=-1 cpu=0.00ms elapsed=1772.12s allocated=10888B defined_classes=1 tid=0x000001bf01b306e0 nid=13912 runnable [0x00000039a49fe000]
java.lang.Thread.State: RUNNABLE
at java.lang.ProcessImpl.waitForInterruptibly(java.base@21.0.7/Native Method)
at java.lang.ProcessImpl.waitFor(java.base@21.0.7/ProcessImpl.java:575)
at com.intellij.execution.process.ProcessWaitFor.lambda$new$0(ProcessWaitFor.java:28)
at com.intellij.execution.process.ProcessWaitFor$$Lambda/0x000001bf5b9374e8.run(Unknown Source)
at com.intellij.util.ConcurrencyUtil.runUnderThreadName(ConcurrencyUtil.java:249)
at com.intellij.execution.process.ProcessWaitFor.lambda$new$1(ProcessWaitFor.java:23)
at com.intellij.execution.process.ProcessWaitFor$$Lambda/0x000001bf5b9139e0.run(Unknown Source)
at java.util.concurrent.Executors$RunnableAdapter.call(java.base@21.0.7/Executors.java:572)
at java.util.concurrent.FutureTask.run(java.base@21.0.7/FutureTask.java:317)
at com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke(propagation.kt:167)
at com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke(propagation.kt:167)
at com.intellij.util.concurrency.ChildContext.runInChildContext(propagation.kt:173)
at com.intellij.util.concurrency.ChildContext.runInChildContext(propagation.kt:167)
at com.intellij.util.concurrency.ContextRunnable.run(ContextRunnable.java:27)
at java.util.concurrent.ThreadPoolExecutor.runWorker(java.base@21.0.7/ThreadPoolExecutor.java:1144)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(java.base@21.0.7/ThreadPoolExecutor.java:642)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(java.base@21.0.7/Executors.java:735)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(java.base@21.0.7/Executors.java:732)
at java.security.AccessController.executePrivileged(java.base@21.0.7/AccessController.java:778)
at java.security.AccessController.doPrivileged(java.base@21.0.7/AccessController.java:400)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1.run(java.base@21.0.7/Executors.java:732)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- <0x0000000084723e30> (a java.util.concurrent.ThreadPoolExecutor$Worker)
"BaseDataReader: output stream of fsnotifier.exe" #73 [17244] prio=4 os_prio=-1 cpu=484.38ms elapsed=1772.09s allocated=2333K defined_classes=3 tid=0x000001bf01b31400 nid=17244 runnable [0x00000039a4afe000]
java.lang.Thread.State: RUNNABLE
at java.io.FileInputStream.readBytes(java.base@21.0.7/Native Method)
at java.io.FileInputStream.implRead(java.base@21.0.7/FileInputStream.java:379)
at java.io.FileInputStream.read(java.base@21.0.7/FileInputStream.java:371)
at java.io.BufferedInputStream.read1(java.base@21.0.7/BufferedInputStream.java:345)
at java.io.BufferedInputStream.implRead(java.base@21.0.7/BufferedInputStream.java:420)
at java.io.BufferedInputStream.read(java.base@21.0.7/BufferedInputStream.java:399)
at sun.nio.cs.StreamDecoder.readBytes(java.base@21.0.7/StreamDecoder.java:350)
at sun.nio.cs.StreamDecoder.implRead(java.base@21.0.7/StreamDecoder.java:393)
at sun.nio.cs.StreamDecoder.lockedRead(java.base@21.0.7/StreamDecoder.java:217)
at sun.nio.cs.StreamDecoder.read(java.base@21.0.7/StreamDecoder.java:177)
- locked <0x0000000084725ec8> (a com.intellij.util.io.BaseInputStreamReader)
at java.io.InputStreamReader.read(java.base@21.0.7/InputStreamReader.java:188)
at java.io.Reader.read(java.base@21.0.7/Reader.java:265)
at com.intellij.util.io.BaseOutputReader.readAvailableBlocking(BaseOutputReader.java:148)
at com.intellij.util.io.BaseDataReader.readAvailable(BaseDataReader.java:72)
at com.intellij.util.io.BaseDataReader.doRun(BaseDataReader.java:153)
at com.intellij.util.io.BaseDataReader$$Lambda/0x000001bf5b93c000.run(Unknown Source)
at com.intellij.util.ConcurrencyUtil.runUnderThreadName(ConcurrencyUtil.java:249)
at com.intellij.util.io.BaseDataReader.lambda$start$0(BaseDataReader.java:48)
at com.intellij.util.io.BaseDataReader$$Lambda/0x000001bf5b91e068.run(Unknown Source)
at java.util.concurrent.Executors$RunnableAdapter.call(java.base@21.0.7/Executors.java:572)
at java.util.concurrent.FutureTask.run(java.base@21.0.7/FutureTask.java:317)
at com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke(propagation.kt:167)
at com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke(propagation.kt:167)
at com.intellij.util.concurrency.ChildContext.runInChildContext(propagation.kt:173)
at com.intellij.util.concurrency.ChildContext.runInChildContext(propagation.kt:167)
at com.intellij.util.concurrency.ContextRunnable.run(ContextRunnable.java:27)
at java.util.concurrent.ThreadPoolExecutor.runWorker(java.base@21.0.7/ThreadPoolExecutor.java:1144)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(java.base@21.0.7/ThreadPoolExecutor.java:642)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(java.base@21.0.7/Executors.java:735)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(java.base@21.0.7/Executors.java:732)
at java.security.AccessController.executePrivileged(java.base@21.0.7/AccessController.java:778)
at java.security.AccessController.doPrivileged(java.base@21.0.7/AccessController.java:400)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1.run(java.base@21.0.7/Executors.java:732)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- <0x00000000848f4788> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)
- <0x00000000848f48b8> (a java.util.concurrent.ThreadPoolExecutor$Worker)
"BaseDataReader: error stream of fsnotifier.exe" #74 [12928] prio=4 os_prio=-1 cpu=0.00ms elapsed=1772.09s allocated=680B defined_classes=0 tid=0x000001bf01b341f0 nid=12928 runnable [0x00000039a4bfe000]
java.lang.Thread.State: RUNNABLE
at java.io.FileInputStream.readBytes(java.base@21.0.7/Native Method)
at java.io.FileInputStream.implRead(java.base@21.0.7/FileInputStream.java:379)
at java.io.FileInputStream.read(java.base@21.0.7/FileInputStream.java:371)
at sun.nio.cs.StreamDecoder.readBytes(java.base@21.0.7/StreamDecoder.java:350)
at sun.nio.cs.StreamDecoder.implRead(java.base@21.0.7/StreamDecoder.java:393)
at sun.nio.cs.StreamDecoder.lockedRead(java.base@21.0.7/StreamDecoder.java:217)
at sun.nio.cs.StreamDecoder.read(java.base@21.0.7/StreamDecoder.java:177)
- locked <0x000000008472fca8> (a com.intellij.util.io.BaseInputStreamReader)
at java.io.InputStreamReader.read(java.base@21.0.7/InputStreamReader.java:188)
at java.io.Reader.read(java.base@21.0.7/Reader.java:265)
at com.intellij.util.io.BaseOutputReader.readAvailableBlocking(BaseOutputReader.java:148)
at com.intellij.util.io.BaseDataReader.readAvailable(BaseDataReader.java:72)
at com.intellij.util.io.BaseDataReader.doRun(BaseDataReader.java:153)
at com.intellij.util.io.BaseDataReader$$Lambda/0x000001bf5b93c000.run(Unknown Source)
at com.intellij.util.ConcurrencyUtil.runUnderThreadName(ConcurrencyUtil.java:249)
at com.intellij.util.io.BaseDataReader.lambda$start$0(BaseDataReader.java:48)
at com.intellij.util.io.BaseDataReader$$Lambda/0x000001bf5b91e068.run(Unknown Source)
at java.util.concurrent.Executors$RunnableAdapter.call(java.base@21.0.7/Executors.java:572)
at java.util.concurrent.FutureTask.run(java.base@21.0.7/FutureTask.java:317)
at com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke(propagation.kt:167)
at com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke(propagation.kt:167)
at com.intellij.util.concurrency.ChildContext.runInChildContext(propagation.kt:173)
at com.intellij.util.concurrency.ChildContext.runInChildContext(propagation.kt:167)
at com.intellij.util.concurrency.ContextRunnable.run(ContextRunnable.java:27)
at java.util.concurrent.ThreadPoolExecutor.runWorker(java.base@21.0.7/ThreadPoolExecutor.java:1144)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(java.base@21.0.7/ThreadPoolExecutor.java:642)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(java.base@21.0.7/Executors.java:735)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(java.base@21.0.7/Executors.java:732)
at java.security.AccessController.executePrivileged(java.base@21.0.7/AccessController.java:778)
at java.security.AccessController.doPrivileged(java.base@21.0.7/AccessController.java:400)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1.run(java.base@21.0.7/Executors.java:732)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- <0x000000008472fba8> (a java.util.concurrent.ThreadPoolExecutor$Worker)
"Windows Shell integration" #75 [15848] daemon prio=5 os_prio=0 cpu=125.00ms elapsed=1772.00s allocated=1984B defined_classes=0 tid=0x000001bf01b30d70 nid=15848 waiting on condition [0x00000039a4cfe000]
java.lang.Thread.State: WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x00000000876ad340> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
at java.util.concurrent.locks.LockSupport.park(java.base@21.0.7/LockSupport.java:371)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(java.base@21.0.7/AbstractQueuedSynchronizer.java:519)
at java.util.concurrent.ForkJoinPool.unmanagedBlock(java.base@21.0.7/ForkJoinPool.java:4013)
at java.util.concurrent.ForkJoinPool.managedBlock(java.base@21.0.7/ForkJoinPool.java:3961)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(java.base@21.0.7/AbstractQueuedSynchronizer.java:1712)
at java.util.concurrent.LinkedBlockingQueue.take(java.base@21.0.7/LinkedBlockingQueue.java:435)
at java.util.concurrent.ThreadPoolExecutor.getTask(java.base@21.0.7/ThreadPoolExecutor.java:1070)
at java.util.concurrent.ThreadPoolExecutor.runWorker(java.base@21.0.7/ThreadPoolExecutor.java:1130)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(java.base@21.0.7/ThreadPoolExecutor.java:642)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- None
"Netty Station Client 1-1" #76 [14060] daemon prio=5 os_prio=0 cpu=250.00ms elapsed=1771.83s allocated=2266K defined_classes=101 tid=0x000001bf01b34f10 nid=14060 runnable [0x00000039a52fe000]
java.lang.Thread.State: RUNNABLE
at sun.nio.ch.WEPoll.wait(java.base@21.0.7/Native Method)
at sun.nio.ch.WEPollSelectorImpl.doSelect(java.base@21.0.7/WEPollSelectorImpl.java:114)
at sun.nio.ch.SelectorImpl.lockAndDoSelect(java.base@21.0.7/SelectorImpl.java:130)
- locked <0x00000000847362c0> (a io.netty.channel.nio.SelectedSelectionKeySet)
- locked <0x0000000084736260> (a sun.nio.ch.WEPollSelectorImpl)
at sun.nio.ch.SelectorImpl.select(java.base@21.0.7/SelectorImpl.java:142)
at io.netty.channel.nio.SelectedSelectionKeySetSelector.select(SelectedSelectionKeySetSelector.java:62)
at io.netty.channel.nio.NioIoHandler.select(NioIoHandler.java:646)
at io.netty.channel.nio.NioIoHandler.run(NioIoHandler.java:432)
at io.netty.channel.SingleThreadIoEventLoop.runIo(SingleThreadIoEventLoop.java:203)
at io.netty.channel.SingleThreadIoEventLoop.run(SingleThreadIoEventLoop.java:174)
at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:1123)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- <0x00000000847384f8> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)
"TimerQueue" #77 [7788] daemon prio=5 os_prio=0 cpu=609.38ms elapsed=1771.37s allocated=31574K defined_classes=2 tid=0x000001bf01b2f9c0 nid=7788 runnable [0x00000039a54ff000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x00000000abdc4f98> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:269)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(java.base@21.0.7/AbstractQueuedSynchronizer.java:1763)
at javax.swing.TimerQueue.run(java.desktop/TimerQueue.java:188)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- <0x00000000847365a8> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)
"HttpClient-1-SelectorManager" #78 [10208] daemon prio=4 os_prio=-1 cpu=0.00ms elapsed=1771.29s allocated=187K defined_classes=1 tid=0x000001c020e54f30 nid=10208 runnable [0x00000039a55ff000]
java.lang.Thread.State: RUNNABLE
at sun.nio.ch.WEPoll.wait(java.base@21.0.7/Native Method)
at sun.nio.ch.WEPollSelectorImpl.doSelect(java.base@21.0.7/WEPollSelectorImpl.java:114)
at sun.nio.ch.SelectorImpl.lockAndDoSelect(java.base@21.0.7/SelectorImpl.java:130)
- locked <0x00000000848f1088> (a sun.nio.ch.Util$2)
- locked <0x00000000848f0f80> (a sun.nio.ch.WEPollSelectorImpl)
at sun.nio.ch.SelectorImpl.select(java.base@21.0.7/SelectorImpl.java:142)
at jdk.internal.net.http.HttpClientImpl$SelectorManager.run(java.net.http@21.0.7/HttpClientImpl.java:1369)
Locked ownable synchronizers:
- None
"Jndi-Dns-address-change-listener" #79 [13096] daemon prio=5 os_prio=0 cpu=0.00ms elapsed=1771.13s allocated=160B defined_classes=0 tid=0x000001c020e57000 nid=13096 runnable [0x00000039a56ff000]
java.lang.Thread.State: RUNNABLE
at sun.net.dns.ResolverConfigurationImpl.notifyAddrChange0(java.base@21.0.7/Native Method)
at sun.net.dns.ResolverConfigurationImpl$AddressChangeListener.run(java.base@21.0.7/ResolverConfigurationImpl.java:179)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
at jdk.internal.misc.InnocuousThread.run(java.base@21.0.7/InnocuousThread.java:186)
Locked ownable synchronizers:
- None
"Netty Station Client 1-2" #94 [8120] daemon prio=5 os_prio=0 cpu=265.62ms elapsed=1766.74s allocated=1922K defined_classes=4 tid=0x000001c032ca0d60 nid=8120 runnable [0x00000039a46fe000]
java.lang.Thread.State: RUNNABLE
at sun.nio.ch.WEPoll.wait(java.base@21.0.7/Native Method)
at sun.nio.ch.WEPollSelectorImpl.doSelect(java.base@21.0.7/WEPollSelectorImpl.java:114)
at sun.nio.ch.SelectorImpl.lockAndDoSelect(java.base@21.0.7/SelectorImpl.java:130)
- locked <0x0000000084736a40> (a io.netty.channel.nio.SelectedSelectionKeySet)
- locked <0x0000000084737a68> (a sun.nio.ch.WEPollSelectorImpl)
at sun.nio.ch.SelectorImpl.select(java.base@21.0.7/SelectorImpl.java:142)
at io.netty.channel.nio.SelectedSelectionKeySetSelector.select(SelectedSelectionKeySetSelector.java:62)
at io.netty.channel.nio.NioIoHandler.select(NioIoHandler.java:646)
at io.netty.channel.nio.NioIoHandler.run(NioIoHandler.java:432)
at io.netty.channel.SingleThreadIoEventLoop.runIo(SingleThreadIoEventLoop.java:203)
at io.netty.channel.SingleThreadIoEventLoop.run(SingleThreadIoEventLoop.java:174)
at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:1123)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- <0x0000000084736820> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)
"Netty Station Server 1-1" #95 [12848] daemon prio=5 os_prio=0 cpu=0.00ms elapsed=1766.10s allocated=17840B defined_classes=1 tid=0x000001c020e57690 nid=12848 runnable [0x00000039a5efe000]
java.lang.Thread.State: RUNNABLE
at sun.nio.ch.WEPoll.wait(java.base@21.0.7/Native Method)
at sun.nio.ch.WEPollSelectorImpl.doSelect(java.base@21.0.7/WEPollSelectorImpl.java:114)
at sun.nio.ch.SelectorImpl.lockAndDoSelect(java.base@21.0.7/SelectorImpl.java:130)
- locked <0x000000008260ed50> (a io.netty.channel.nio.SelectedSelectionKeySet)
- locked <0x000000008260ecf0> (a sun.nio.ch.WEPollSelectorImpl)
at sun.nio.ch.SelectorImpl.select(java.base@21.0.7/SelectorImpl.java:142)
at io.netty.channel.nio.SelectedSelectionKeySetSelector.select(SelectedSelectionKeySetSelector.java:62)
at io.netty.channel.nio.NioIoHandler.select(NioIoHandler.java:646)
at io.netty.channel.nio.NioIoHandler.run(NioIoHandler.java:432)
at io.netty.channel.SingleThreadIoEventLoop.runIo(SingleThreadIoEventLoop.java:203)
at io.netty.channel.SingleThreadIoEventLoop.run(SingleThreadIoEventLoop.java:174)
at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:1123)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- <0x0000000084cf7c60> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)
"SerializersBackgroundRegistrar" #96 [16804] daemon prio=5 os_prio=0 cpu=15.62ms elapsed=1765.39s allocated=12744B defined_classes=1 tid=0x000001bf01b327b0 nid=16804 waiting on condition [0x00000039a5fff000]
java.lang.Thread.State: WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x0000000091434e88> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
at java.util.concurrent.locks.LockSupport.park(java.base@21.0.7/LockSupport.java:371)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(java.base@21.0.7/AbstractQueuedSynchronizer.java:519)
at java.util.concurrent.ForkJoinPool.unmanagedBlock(java.base@21.0.7/ForkJoinPool.java:4013)
at java.util.concurrent.ForkJoinPool.managedBlock(java.base@21.0.7/ForkJoinPool.java:3961)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(java.base@21.0.7/AbstractQueuedSynchronizer.java:1712)
at java.util.concurrent.LinkedBlockingQueue.take(java.base@21.0.7/LinkedBlockingQueue.java:435)
at java.util.concurrent.ThreadPoolExecutor.getTask(java.base@21.0.7/ThreadPoolExecutor.java:1070)
at java.util.concurrent.ThreadPoolExecutor.runWorker(java.base@21.0.7/ThreadPoolExecutor.java:1130)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(java.base@21.0.7/ThreadPoolExecutor.java:642)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- None
"JVMResponsivenessMonitor" #97 [14052] daemon prio=5 os_prio=0 cpu=78.12ms elapsed=1765.32s allocated=3011K defined_classes=44 tid=0x000001c034503f30 nid=14052 sleeping [0x00000039a60ff000]
java.lang.Thread.State: TIMED_WAITING (sleeping)
at java.lang.Thread.sleep0(java.base@21.0.7/Native Method)
at java.lang.Thread.sleep(java.base@21.0.7/Thread.java:509)
at com.intellij.diagnostic.JVMResponsivenessMonitor.samplingLoop(JVMResponsivenessMonitor.java:115)
at com.intellij.diagnostic.JVMResponsivenessMonitor$$Lambda/0x000001bf5c6f25b8.run(Unknown Source)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- None
"DefaultDispatcher-worker-7" #128 [3692] daemon prio=5 os_prio=0 cpu=10203.12ms elapsed=1761.37s allocated=667M defined_classes=1145 tid=0x000001bfc73bdfb0 nid=3692 waiting on condition [0x00000039a7dff000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:410)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park(CoroutineScheduler.kt:938)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark(CoroutineScheduler.kt:875)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:810)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:765)
Locked ownable synchronizers:
- None
"DefaultDispatcher-worker-3" #129 [15320] daemon prio=5 os_prio=0 cpu=8968.75ms elapsed=1761.37s allocated=555M defined_classes=298 tid=0x000001bfc73c0da0 nid=15320 waiting on condition [0x00000039a7efe000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:410)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park(CoroutineScheduler.kt:938)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark(CoroutineScheduler.kt:875)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:810)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:765)
Locked ownable synchronizers:
- None
"DefaultDispatcher-worker-4" #146 [13976] daemon prio=5 os_prio=0 cpu=9015.62ms elapsed=1761.37s allocated=636M defined_classes=705 tid=0x000001bfc7aef250 nid=13976 waiting on condition [0x00000039a8fff000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:410)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park(CoroutineScheduler.kt:938)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark(CoroutineScheduler.kt:875)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:810)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:765)
Locked ownable synchronizers:
- None
"DefaultDispatcher-worker-1" #149 [8612] daemon prio=5 os_prio=0 cpu=10062.50ms elapsed=1761.37s allocated=710M defined_classes=375 tid=0x000001bfc7af82b0 nid=8612 waiting on condition [0x00000039a92ff000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:410)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park(CoroutineScheduler.kt:938)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark(CoroutineScheduler.kt:875)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:810)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:765)
Locked ownable synchronizers:
- None
"IdIndex Writer #0" #178 [15504] prio=4 os_prio=-1 cpu=0.00ms elapsed=1612.91s allocated=64B defined_classes=0 tid=0x000001bfc73b8a60 nid=15504 waiting on condition [0x00000039a33ff000]
java.lang.Thread.State: WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x000000008762fd40> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
at java.util.concurrent.locks.LockSupport.park(java.base@21.0.7/LockSupport.java:371)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(java.base@21.0.7/AbstractQueuedSynchronizer.java:519)
at java.util.concurrent.ForkJoinPool.unmanagedBlock(java.base@21.0.7/ForkJoinPool.java:4013)
at java.util.concurrent.ForkJoinPool.managedBlock(java.base@21.0.7/ForkJoinPool.java:3961)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(java.base@21.0.7/AbstractQueuedSynchronizer.java:1712)
at java.util.concurrent.LinkedBlockingQueue.take(java.base@21.0.7/LinkedBlockingQueue.java:435)
at java.util.concurrent.ThreadPoolExecutor.getTask(java.base@21.0.7/ThreadPoolExecutor.java:1070)
at java.util.concurrent.ThreadPoolExecutor.runWorker(java.base@21.0.7/ThreadPoolExecutor.java:1130)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(java.base@21.0.7/ThreadPoolExecutor.java:642)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- None
"Trigram.Index Writer #1" #179 [16612] prio=4 os_prio=-1 cpu=0.00ms elapsed=1612.91s allocated=64B defined_classes=0 tid=0x000001bf01b6fca0 nid=16612 waiting on condition [0x00000039a34ff000]
java.lang.Thread.State: WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x000000008762fa38> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
at java.util.concurrent.locks.LockSupport.park(java.base@21.0.7/LockSupport.java:371)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(java.base@21.0.7/AbstractQueuedSynchronizer.java:519)
at java.util.concurrent.ForkJoinPool.unmanagedBlock(java.base@21.0.7/ForkJoinPool.java:4013)
at java.util.concurrent.ForkJoinPool.managedBlock(java.base@21.0.7/ForkJoinPool.java:3961)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(java.base@21.0.7/AbstractQueuedSynchronizer.java:1712)
at java.util.concurrent.LinkedBlockingQueue.take(java.base@21.0.7/LinkedBlockingQueue.java:435)
at java.util.concurrent.ThreadPoolExecutor.getTask(java.base@21.0.7/ThreadPoolExecutor.java:1070)
at java.util.concurrent.ThreadPoolExecutor.runWorker(java.base@21.0.7/ThreadPoolExecutor.java:1130)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(java.base@21.0.7/ThreadPoolExecutor.java:642)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- None
"Stubs Writer #2" #180 [16760] prio=4 os_prio=-1 cpu=0.00ms elapsed=1612.91s allocated=64B defined_classes=0 tid=0x000001bf01b71d70 nid=16760 waiting on condition [0x00000039a3eff000]
java.lang.Thread.State: WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x000000008762f738> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
at java.util.concurrent.locks.LockSupport.park(java.base@21.0.7/LockSupport.java:371)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(java.base@21.0.7/AbstractQueuedSynchronizer.java:519)
at java.util.concurrent.ForkJoinPool.unmanagedBlock(java.base@21.0.7/ForkJoinPool.java:4013)
at java.util.concurrent.ForkJoinPool.managedBlock(java.base@21.0.7/ForkJoinPool.java:3961)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(java.base@21.0.7/AbstractQueuedSynchronizer.java:1712)
at java.util.concurrent.LinkedBlockingQueue.take(java.base@21.0.7/LinkedBlockingQueue.java:435)
at java.util.concurrent.ThreadPoolExecutor.getTask(java.base@21.0.7/ThreadPoolExecutor.java:1070)
at java.util.concurrent.ThreadPoolExecutor.runWorker(java.base@21.0.7/ThreadPoolExecutor.java:1130)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(java.base@21.0.7/ThreadPoolExecutor.java:642)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- None
"Aux Index Writer #1" #181 [9636] prio=4 os_prio=-1 cpu=0.00ms elapsed=1612.91s allocated=64B defined_classes=0 tid=0x000001bf01b716e0 nid=9636 waiting on condition [0x00000039a41fe000]
java.lang.Thread.State: WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x000000008762f430> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
at java.util.concurrent.locks.LockSupport.park(java.base@21.0.7/LockSupport.java:371)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(java.base@21.0.7/AbstractQueuedSynchronizer.java:519)
at java.util.concurrent.ForkJoinPool.unmanagedBlock(java.base@21.0.7/ForkJoinPool.java:4013)
at java.util.concurrent.ForkJoinPool.managedBlock(java.base@21.0.7/ForkJoinPool.java:3961)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(java.base@21.0.7/AbstractQueuedSynchronizer.java:1712)
at java.util.concurrent.LinkedBlockingQueue.take(java.base@21.0.7/LinkedBlockingQueue.java:435)
at java.util.concurrent.ThreadPoolExecutor.getTask(java.base@21.0.7/ThreadPoolExecutor.java:1070)
at java.util.concurrent.ThreadPoolExecutor.runWorker(java.base@21.0.7/ThreadPoolExecutor.java:1130)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(java.base@21.0.7/ThreadPoolExecutor.java:642)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- None
"HttpClient-9-SelectorManager" #190 [13408] daemon prio=5 os_prio=0 cpu=15.62ms elapsed=1593.58s allocated=127K defined_classes=0 tid=0x000001bf01b744d0 nid=13408 runnable [0x00000039a5aff000]
java.lang.Thread.State: RUNNABLE
at sun.nio.ch.WEPoll.wait(java.base@21.0.7/Native Method)
at sun.nio.ch.WEPollSelectorImpl.doSelect(java.base@21.0.7/WEPollSelectorImpl.java:114)
at sun.nio.ch.SelectorImpl.lockAndDoSelect(java.base@21.0.7/SelectorImpl.java:130)
- locked <0x000000008d6142f8> (a sun.nio.ch.Util$2)
- locked <0x000000008d614298> (a sun.nio.ch.WEPollSelectorImpl)
at sun.nio.ch.SelectorImpl.select(java.base@21.0.7/SelectorImpl.java:142)
at jdk.internal.net.http.HttpClientImpl$SelectorManager.run(java.net.http@21.0.7/HttpClientImpl.java:1369)
Locked ownable synchronizers:
- None
"HttpClient-12-SelectorManager" #199 [16688] daemon prio=5 os_prio=0 cpu=0.00ms elapsed=1592.64s allocated=126K defined_classes=0 tid=0x000001bf01b7ef70 nid=16688 runnable [0x00000039a66fe000]
java.lang.Thread.State: RUNNABLE
at sun.nio.ch.WEPoll.wait(java.base@21.0.7/Native Method)
at sun.nio.ch.WEPollSelectorImpl.doSelect(java.base@21.0.7/WEPollSelectorImpl.java:114)
at sun.nio.ch.SelectorImpl.lockAndDoSelect(java.base@21.0.7/SelectorImpl.java:130)
- locked <0x000000008d614450> (a sun.nio.ch.Util$2)
- locked <0x000000008d6143f0> (a sun.nio.ch.WEPollSelectorImpl)
at sun.nio.ch.SelectorImpl.select(java.base@21.0.7/SelectorImpl.java:142)
at jdk.internal.net.http.HttpClientImpl$SelectorManager.run(java.net.http@21.0.7/HttpClientImpl.java:1369)
Locked ownable synchronizers:
- None
"HttpClient-16-SelectorManager" #228 [5300] daemon prio=5 os_prio=0 cpu=15.62ms elapsed=1554.98s allocated=99616B defined_classes=0 tid=0x000001bf5882e0f0 nid=5300 runnable [0x00000039a65ff000]
java.lang.Thread.State: RUNNABLE
at sun.nio.ch.WEPoll.wait(java.base@21.0.7/Native Method)
at sun.nio.ch.WEPollSelectorImpl.doSelect(java.base@21.0.7/WEPollSelectorImpl.java:114)
at sun.nio.ch.SelectorImpl.lockAndDoSelect(java.base@21.0.7/SelectorImpl.java:130)
- locked <0x00000000974b1e40> (a sun.nio.ch.Util$2)
- locked <0x00000000974b1e50> (a sun.nio.ch.WEPollSelectorImpl)
at sun.nio.ch.SelectorImpl.select(java.base@21.0.7/SelectorImpl.java:142)
at jdk.internal.net.http.HttpClientImpl$SelectorManager.run(java.net.http@21.0.7/HttpClientImpl.java:1369)
Locked ownable synchronizers:
- None
"rd throttler" #238 [13220] daemon prio=10 os_prio=2 cpu=0.00ms elapsed=1510.48s allocated=24840B defined_classes=2 tid=0x000001bfc73b83d0 nid=13220 in Object.wait() [0x00000039a30ff000]
java.lang.Thread.State: WAITING (on object monitor)
at java.lang.Object.wait0(java.base@21.0.7/Native Method)
- waiting on <no object reference available>
at java.lang.Object.wait(java.base@21.0.7/Object.java:366)
at java.lang.Object.wait(java.base@21.0.7/Object.java:339)
at java.util.TimerThread.mainLoop(java.base@21.0.7/Timer.java:537)
- locked <0x000000008cdb0fe8> (a java.util.TaskQueue)
at java.util.TimerThread.run(java.base@21.0.7/Timer.java:516)
Locked ownable synchronizers:
- None
"HttpClient-20-SelectorManager" #255 [12184] daemon prio=4 os_prio=-1 cpu=0.00ms elapsed=1462.25s allocated=62296B defined_classes=0 tid=0x000001c03deb0d80 nid=12184 runnable [0x00000039a2fff000]
java.lang.Thread.State: RUNNABLE
at sun.nio.ch.WEPoll.wait(java.base@21.0.7/Native Method)
at sun.nio.ch.WEPollSelectorImpl.doSelect(java.base@21.0.7/WEPollSelectorImpl.java:114)
at sun.nio.ch.SelectorImpl.lockAndDoSelect(java.base@21.0.7/SelectorImpl.java:130)
- locked <0x000000008e2b6b68> (a sun.nio.ch.Util$2)
- locked <0x000000008e2b6b08> (a sun.nio.ch.WEPollSelectorImpl)
at sun.nio.ch.SelectorImpl.select(java.base@21.0.7/SelectorImpl.java:142)
at jdk.internal.net.http.HttpClientImpl$SelectorManager.run(java.net.http@21.0.7/HttpClientImpl.java:1369)
Locked ownable synchronizers:
- None
"JobScheduler FJ pool 0/3" #343 [5124] daemon prio=10 os_prio=2 cpu=65750.00ms elapsed=749.51s allocated=4053M defined_classes=43 tid=0x000001bfd4ba0040 nid=5124 waiting on condition [0x00000039a03fe000]
java.lang.Thread.State: WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x000000008212c798> (a java.util.concurrent.ForkJoinPool)
at java.util.concurrent.ForkJoinPool.awaitWork(java.base@21.0.7/ForkJoinPool.java:2145)
at java.util.concurrent.ForkJoinPool.runWorker(java.base@21.0.7/ForkJoinPool.java:2036)
at java.util.concurrent.ForkJoinWorkerThread.run(java.base@21.0.7/ForkJoinWorkerThread.java:187)
Locked ownable synchronizers:
- None
"JobScheduler FJ pool 1/3" #344 [7216] daemon prio=10 os_prio=2 cpu=64828.12ms elapsed=749.27s allocated=4160M defined_classes=146 tid=0x000001bfd4ba62b0 nid=7216 waiting on condition [0x00000039a18ff000]
java.lang.Thread.State: WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x000000008212c798> (a java.util.concurrent.ForkJoinPool)
at java.util.concurrent.ForkJoinPool.awaitWork(java.base@21.0.7/ForkJoinPool.java:2145)
at java.util.concurrent.ForkJoinPool.runWorker(java.base@21.0.7/ForkJoinPool.java:2036)
at java.util.concurrent.ForkJoinWorkerThread.run(java.base@21.0.7/ForkJoinWorkerThread.java:187)
Locked ownable synchronizers:
- None
"JobScheduler FJ pool 2/3" #345 [11532] daemon prio=10 os_prio=2 cpu=66093.75ms elapsed=749.26s allocated=4130M defined_classes=47 tid=0x000001bfd4ba8380 nid=11532 waiting on condition [0x00000039a19ff000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x000000008212c798> (a java.util.concurrent.ForkJoinPool)
at java.util.concurrent.ForkJoinPool.awaitWork(java.base@21.0.7/ForkJoinPool.java:2145)
at java.util.concurrent.ForkJoinPool.runWorker(java.base@21.0.7/ForkJoinPool.java:2036)
at java.util.concurrent.ForkJoinWorkerThread.run(java.base@21.0.7/ForkJoinWorkerThread.java:187)
Locked ownable synchronizers:
- None
"DefaultDispatcher-worker-8" #347 [12156] daemon prio=5 os_prio=0 cpu=8187.50ms elapsed=746.56s allocated=537M defined_classes=66 tid=0x000001bfd4bac520 nid=12156 waiting on condition [0x00000039a1bff000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:410)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park(CoroutineScheduler.kt:938)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark(CoroutineScheduler.kt:875)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:810)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:765)
Locked ownable synchronizers:
- None
"DefaultDispatcher-worker-9" #348 [16648] daemon prio=5 os_prio=0 cpu=9234.38ms elapsed=746.56s allocated=484M defined_classes=41 tid=0x000001bfd4ba90a0 nid=16648 waiting on condition [0x00000039a22ff000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:410)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park(CoroutineScheduler.kt:938)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark(CoroutineScheduler.kt:875)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:810)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:765)
Locked ownable synchronizers:
- None
"DefaultDispatcher-worker-10" #353 [7908] daemon prio=5 os_prio=0 cpu=7078.12ms elapsed=732.44s allocated=420M defined_classes=9 tid=0x000001bf5881fb40 nid=7908 waiting on condition [0x00000039a2bfe000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:410)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park(CoroutineScheduler.kt:938)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark(CoroutineScheduler.kt:875)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:810)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:765)
Locked ownable synchronizers:
- None
"DefaultDispatcher-worker-11" #354 [16056] daemon prio=5 os_prio=0 cpu=7484.38ms elapsed=732.44s allocated=384M defined_classes=76 tid=0x000001bf58827e80 nid=16056 waiting on condition [0x00000039a2cff000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:410)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park(CoroutineScheduler.kt:938)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark(CoroutineScheduler.kt:875)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:810)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:765)
Locked ownable synchronizers:
- None
"I/O pool 50" #407 [968] prio=4 os_prio=-1 cpu=31.25ms elapsed=281.27s allocated=550K defined_classes=0 tid=0x000001bfc7aeff70 nid=968 waiting on condition [0x00000039a26fe000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x0000000084bf1d48> (a java.util.concurrent.SynchronousQueue$Transferer)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:410)
at java.util.concurrent.LinkedTransferQueue$DualNode.await(java.base@21.0.7/LinkedTransferQueue.java:452)
at java.util.concurrent.SynchronousQueue$Transferer.xferLifo(java.base@21.0.7/SynchronousQueue.java:194)
at java.util.concurrent.SynchronousQueue.xfer(java.base@21.0.7/SynchronousQueue.java:235)
at java.util.concurrent.SynchronousQueue.poll(java.base@21.0.7/SynchronousQueue.java:338)
at java.util.concurrent.ThreadPoolExecutor.getTask(java.base@21.0.7/ThreadPoolExecutor.java:1069)
at java.util.concurrent.ThreadPoolExecutor.runWorker(java.base@21.0.7/ThreadPoolExecutor.java:1130)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(java.base@21.0.7/ThreadPoolExecutor.java:642)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(java.base@21.0.7/Executors.java:735)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(java.base@21.0.7/Executors.java:732)
at java.security.AccessController.executePrivileged(java.base@21.0.7/AccessController.java:778)
at java.security.AccessController.doPrivileged(java.base@21.0.7/AccessController.java:400)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1.run(java.base@21.0.7/Executors.java:732)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- None
"ApplicationImpl pooled thread 42" #410 [3724] prio=4 os_prio=-1 cpu=312.50ms elapsed=219.33s allocated=19872K defined_classes=0 tid=0x000001bfd4bab800 nid=3724 waiting on condition [0x00000039a1afe000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x000000008763b408> (a java.util.concurrent.SynchronousQueue$Transferer)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:410)
at java.util.concurrent.LinkedTransferQueue$DualNode.await(java.base@21.0.7/LinkedTransferQueue.java:452)
at java.util.concurrent.SynchronousQueue$Transferer.xferLifo(java.base@21.0.7/SynchronousQueue.java:194)
at java.util.concurrent.SynchronousQueue.xfer(java.base@21.0.7/SynchronousQueue.java:235)
at java.util.concurrent.SynchronousQueue.poll(java.base@21.0.7/SynchronousQueue.java:338)
at java.util.concurrent.ThreadPoolExecutor.getTask(java.base@21.0.7/ThreadPoolExecutor.java:1069)
at java.util.concurrent.ThreadPoolExecutor.runWorker(java.base@21.0.7/ThreadPoolExecutor.java:1130)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(java.base@21.0.7/ThreadPoolExecutor.java:642)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(java.base@21.0.7/Executors.java:735)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(java.base@21.0.7/Executors.java:732)
at java.security.AccessController.executePrivileged(java.base@21.0.7/AccessController.java:778)
at java.security.AccessController.doPrivileged(java.base@21.0.7/AccessController.java:400)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1.run(java.base@21.0.7/Executors.java:732)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- None
"Keep-Alive-Timer" #416 [14256] daemon prio=8 os_prio=1 cpu=0.00ms elapsed=161.29s allocated=8944B defined_classes=0 tid=0x000001c02576f6f0 nid=14256 waiting on condition [0x00000039a38ff000]
java.lang.Thread.State: TIMED_WAITING (sleeping)
at java.lang.Thread.sleep0(java.base@21.0.7/Native Method)
at java.lang.Thread.sleep(java.base@21.0.7/Thread.java:509)
at sun.net.www.http.KeepAliveCache.run(java.base@21.0.7/KeepAliveCache.java:238)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
at jdk.internal.misc.InnocuousThread.run(java.base@21.0.7/InnocuousThread.java:186)
Locked ownable synchronizers:
- None
"ApplicationImpl pooled thread 46" #419 [9392] prio=4 os_prio=-1 cpu=140.62ms elapsed=103.88s allocated=11437K defined_classes=0 tid=0x000001c025772b70 nid=9392 waiting on condition [0x00000039a32fe000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x000000008763b408> (a java.util.concurrent.SynchronousQueue$Transferer)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:410)
at java.util.concurrent.LinkedTransferQueue$DualNode.await(java.base@21.0.7/LinkedTransferQueue.java:452)
at java.util.concurrent.SynchronousQueue$Transferer.xferLifo(java.base@21.0.7/SynchronousQueue.java:194)
at java.util.concurrent.SynchronousQueue.xfer(java.base@21.0.7/SynchronousQueue.java:235)
at java.util.concurrent.SynchronousQueue.poll(java.base@21.0.7/SynchronousQueue.java:338)
at java.util.concurrent.ThreadPoolExecutor.getTask(java.base@21.0.7/ThreadPoolExecutor.java:1069)
at java.util.concurrent.ThreadPoolExecutor.runWorker(java.base@21.0.7/ThreadPoolExecutor.java:1130)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(java.base@21.0.7/ThreadPoolExecutor.java:642)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(java.base@21.0.7/Executors.java:735)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(java.base@21.0.7/Executors.java:732)
at java.security.AccessController.executePrivileged(java.base@21.0.7/AccessController.java:778)
at java.security.AccessController.doPrivileged(java.base@21.0.7/AccessController.java:400)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1.run(java.base@21.0.7/Executors.java:732)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- None
"ApplicationImpl pooled thread 48" #420 [14120] prio=4 os_prio=-1 cpu=140.62ms elapsed=103.66s allocated=10739K defined_classes=0 tid=0x000001c025771130 nid=14120 waiting on condition [0x00000039a39fe000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x000000008763b408> (a java.util.concurrent.SynchronousQueue$Transferer)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:410)
at java.util.concurrent.LinkedTransferQueue$DualNode.await(java.base@21.0.7/LinkedTransferQueue.java:452)
at java.util.concurrent.SynchronousQueue$Transferer.xferLifo(java.base@21.0.7/SynchronousQueue.java:194)
at java.util.concurrent.SynchronousQueue.xfer(java.base@21.0.7/SynchronousQueue.java:235)
at java.util.concurrent.SynchronousQueue.poll(java.base@21.0.7/SynchronousQueue.java:338)
at java.util.concurrent.ThreadPoolExecutor.getTask(java.base@21.0.7/ThreadPoolExecutor.java:1069)
at java.util.concurrent.ThreadPoolExecutor.runWorker(java.base@21.0.7/ThreadPoolExecutor.java:1130)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(java.base@21.0.7/ThreadPoolExecutor.java:642)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(java.base@21.0.7/Executors.java:735)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(java.base@21.0.7/Executors.java:732)
at java.security.AccessController.executePrivileged(java.base@21.0.7/AccessController.java:778)
at java.security.AccessController.doPrivileged(java.base@21.0.7/AccessController.java:400)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1.run(java.base@21.0.7/Executors.java:732)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- None
"ApplicationImpl pooled thread 49" #421 [1708] prio=4 os_prio=-1 cpu=15.62ms elapsed=17.25s allocated=595K defined_classes=0 tid=0x000001c02576fd80 nid=1708 waiting on condition [0x00000039a02fe000]
java.lang.Thread.State: TIMED_WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@21.0.7/Native Method)
- parking to wait for <0x000000008763b408> (a java.util.concurrent.SynchronousQueue$Transferer)
at java.util.concurrent.locks.LockSupport.parkNanos(java.base@21.0.7/LockSupport.java:410)
at java.util.concurrent.LinkedTransferQueue$DualNode.await(java.base@21.0.7/LinkedTransferQueue.java:452)
at java.util.concurrent.SynchronousQueue$Transferer.xferLifo(java.base@21.0.7/SynchronousQueue.java:194)
at java.util.concurrent.SynchronousQueue.xfer(java.base@21.0.7/SynchronousQueue.java:235)
at java.util.concurrent.SynchronousQueue.poll(java.base@21.0.7/SynchronousQueue.java:338)
at java.util.concurrent.ThreadPoolExecutor.getTask(java.base@21.0.7/ThreadPoolExecutor.java:1069)
at java.util.concurrent.ThreadPoolExecutor.runWorker(java.base@21.0.7/ThreadPoolExecutor.java:1130)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(java.base@21.0.7/ThreadPoolExecutor.java:642)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(java.base@21.0.7/Executors.java:735)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(java.base@21.0.7/Executors.java:732)
at java.security.AccessController.executePrivileged(java.base@21.0.7/AccessController.java:778)
at java.security.AccessController.doPrivileged(java.base@21.0.7/AccessController.java:400)
at java.util.concurrent.Executors$PrivilegedThreadFactory$1.run(java.base@21.0.7/Executors.java:732)
at java.lang.Thread.runWith(java.base@21.0.7/Thread.java:1596)
at java.lang.Thread.run(java.base@21.0.7/Thread.java:1583)
Locked ownable synchronizers:
- None
"GC Thread#3" os_prio=2 cpu=7937.50ms elapsed=1777.48s tid=0x000001bfc014ec10 nid=16176 runnable
"GC Thread#2" os_prio=2 cpu=7859.38ms elapsed=1777.98s tid=0x000001bfc01242e0 nid=3000 runnable
"GC Thread#1" os_prio=2 cpu=7937.50ms elapsed=1777.98s tid=0x000001bfc0136ac0 nid=15420 runnable
"VM Thread" os_prio=2 cpu=1046.88ms elapsed=1778.84s tid=0x000001bf58874c40 nid=9336 runnable
"VM Periodic Task Thread" os_prio=2 cpu=343.75ms elapsed=1778.85s tid=0x000001bf588654a0 nid=15656 waiting on condition
"G1 Service" os_prio=2 cpu=62.50ms elapsed=1778.87s tid=0x000001bf587258f0 nid=11592 runnable
"G1 Refine#0" os_prio=2 cpu=500.00ms elapsed=1778.87s tid=0x000001bf58722f60 nid=17384 runnable
"G1 Conc#0" os_prio=2 cpu=65968.75ms elapsed=1778.87s tid=0x000001bf2f9e5a70 nid=12636 runnable
"G1 Main Marker" os_prio=2 cpu=62.50ms elapsed=1778.87s tid=0x000001bf2f9e4f40 nid=9064 runnable
"GC Thread#0" os_prio=2 cpu=8015.62ms elapsed=1778.87s tid=0x000001bf2f9d32b0 nid=13980 runnable
JNI global refs: 139, weak refs: 138
JNI global refs memory usage: 2099, weak refs: 8745
---------- Coroutine dump ----------
- BlockingCoroutine{Active}@1e0f03dd [BlockingEventLoop]
- StandaloneCoroutine{Active} [BlockingEventLoop]
- "Transactor loop Kernel@7p01nkisqgm2b84lunq9":StandaloneCoroutine{Active} [ThreadLocal(value=fleet.tracing.runtime.Span$Noop@702609b7, threadLocal = fleet.multiplatform.shims.ThreadLocal_jvmKt$threadLocal$1@69bfaa42), kotlinx.coroutines.UndispatchedMarker, java.util.concurrent.Executors$AutoShutdownDelegatedExecutorService]
- StandaloneCoroutine{Active} [kotlinx.coroutines.UndispatchedMarker, Kernel@7p01nkisqgm2b84lunq9, DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ThreadLocal(value=fleet.tracing.runtime.Span$Noop@702609b7, threadLocal = fleet.multiplatform.shims.ThreadLocal_jvmKt$threadLocal$1@69bfaa42), Dispatchers.Unconfined]
- StandaloneCoroutine{Active} [kotlinx.coroutines.UndispatchedMarker, Kernel@7p01nkisqgm2b84lunq9, DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ThreadLocal(value=fleet.tracing.runtime.Span$Noop@702609b7, threadLocal = fleet.multiplatform.shims.ThreadLocal_jvmKt$threadLocal$1@69bfaa42), BlockingEventLoop]
- ProducerCoroutine{Active} [kotlinx.coroutines.UndispatchedMarker, Kernel@7p01nkisqgm2b84lunq9, DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ThreadLocal(value=fleet.tracing.runtime.Span$Noop@702609b7, threadLocal = fleet.multiplatform.shims.ThreadLocal_jvmKt$threadLocal$1@69bfaa42), BlockingEventLoop]
- ProducerCoroutine{Active} [kotlinx.coroutines.UndispatchedMarker, Kernel@7p01nkisqgm2b84lunq9, DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ThreadLocal(value=fleet.tracing.runtime.Span$Noop@702609b7, threadLocal = fleet.multiplatform.shims.ThreadLocal_jvmKt$threadLocal$1@69bfaa42), BlockingEventLoop]
- "Application":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9)]
- "ApplicationImpl@1262469835 container":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij.platform.images)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij.copyright)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij.modules.json)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.intellij.plugins.markdown)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.intellij.plugins.markdown))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x5 of] "org.intellij.plugins.markdown.ui.floating.AddFloatingToolbarTextEditorCustomizer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "(ApplicationImpl@1262469835 x org.jetbrains.plugins.terminal)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.terminal))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.terminal.block.GenOneTerminalOptionHidingActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.terminal.TerminalOptionsProvider":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.terminal.TerminalFontSettingsService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x4 of] "(ApplicationImpl@1262469835 x org.jetbrains.plugins.terminal)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij.java)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.module.WebModuleTypeRegistrar":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.compiler.server.BuildManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "BuildManager RequestProcessor Pool":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO.limitedParallelism(1)]
- "BuildManager Auto-Make Trigger":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO.limitedParallelism(1)]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij.java))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.java.debugger.impl.shared.SharedDebuggerInitializationProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.SetupJavaProjectFromSourcesActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.execution.testDiscovery.TestDiscoveryIndex$MyPostStartUpActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.projectRoots.impl.ExistingJdkConfigurationActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.projectRoots.impl.ExternalJavaConfigurationActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.daemon.problems.pass.ProjectProblemFileSelectionListenerStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.projectRoots.JavaVersionChecker":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.warmup.JdkWarmupProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.daemon.impl.IdeaLibDependencyNotifier":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.jarRepository.RepositoryLibrarySynchronizer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.pom.java.AcceptedLanguageLevelsSettingsStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.FileNotInSourceRootChecker":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.compiler.cache.CompilerCacheStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.packaging.impl.artifacts.ArtifactTypeFeatureCollector":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.compiler.backwardRefs.IsUpToDateCheckStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x10 of] "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x3 of] "(ApplicationImpl@1262469835 x org.jetbrains.completion.full.line)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.intellij.plugins.markdown)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.database.datagrid.DataGridStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.execution.serviceView.ServiceViewStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.vcs.commit.ChangesViewToolWindowRefresher":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.vcs.commit.ChangesViewToolWindowRefresher":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at com.intellij.vcs.commit.ChangesViewToolWindowRefresher$1.invokeSuspend(ChangesViewToolWindowRefresher.kt:24)
- "com.intellij.vcs.commit.ChangesViewToolWindowRefresher":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.openapi.vcs.impl.VcsInitialization$StartUpActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vcs.changes.shelf.ShelveChangeManagerProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vcs.update.RestoreUpdateTree$RestoreUpdateTreeStartUpActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.ChangesToolwindowPassCache":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.vfs.AsyncVfsEventsPostProcessorImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.vfs.AsyncVfsEventsPostProcessorImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.vfs.AsyncVfsEventsPostProcessorImpl$1.invokeSuspend(AsyncVfsEventsPostProcessorImpl.kt:31)
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.vcs.log.impl.IdeVcsProjectLog$InitLogStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.history.integration.LocalHistoryImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.history.integration.LocalHistoryImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.history.integration.LocalHistoryImpl$init$3.invokeSuspend(LocalHistoryImpl.kt:100)
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.spellchecker.grazie.GrazieSpellCheckerEngine$SpellerLoadActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.jetbrains.sh)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij.completion.ml.ranking)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij.notebooks.core)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij.notebooks.core)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij.notebooks.core))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x5 of] "com.intellij.notebooks.visualization.ui.NotebookFloatingToolbarCustomizer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "(ApplicationImpl@1262469835 x org.jetbrains.plugins.textmate)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.textmate.TextMateServiceImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.jetbrains.station)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.station.core.impl.IdeStationServicesClientImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.station.core.impl.IdeStationServicesClientImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.util.CoroutinesKt$awaitCancellationAndInvoke$1.invokeSuspend(coroutines.kt:35)
- "com.intellij.station.core.IdeServicesHostApplication":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.station.core.services.IdeStationServerService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.station.core.services.IdeStationServerService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.station.core.services.IdeStationServerService$1.invokeSuspend(IdeStationServerService.kt:35)
- "com.intellij.station.core.services.IdeStationServerService":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.station.core.services.IdeStationServerService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.station.core.services.IdeStationServerService$1$1$1.invokeSuspend(IdeStationServerService.kt:46)
at com.intellij.station.core.services.IdeStationServerService$1$1.invokeSuspend(IdeStationServerService.kt:41)
at kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invokeSuspend(Merge.kt:213)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
- "com.intellij.station.core.services.IdeStationServerService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.station.comms.common.netty.server.NettyServicesServerBase$1.invokeSuspend(NettyServicesServerBase.kt:65)
- "com.intellij.station.core.services.IdeStationServerService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.station.comms.common.netty.server.NettyServicesServerBase$2.invokeSuspend(NettyServicesServerBase.kt:72)
- "com.intellij.station.core.services.IdeStationServerService":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.station.core.services.IdeStationServerService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.station.comms.common.netty.server.NettyServicesServerBase$2$1.invokeSuspend(NettyServicesServerBase.kt:118)
at kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invokeSuspend(Merge.kt:213)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
- "com.intellij.station.core.services.IdeStationServerService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.station.comms.common.netty.server.NettyServicesServerBase$3.invokeSuspend(NettyServicesServerBase.kt:130)
- "com.intellij.station.core.services.IdeStationServerService":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.station.core.services.IdeStationServerService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.station.comms.common.netty.server.NettyServicesServerBase$3$1.invokeSuspend(NettyServicesServerBase.kt:133)
at kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invokeSuspend(Merge.kt:213)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
- "com.intellij.station.core.services.IdeStationServerService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO]
at com.intellij.station.core.impl.StationSocketConnectionLoop$connectWithRetries$2.invokeSuspend(StationConnectionUtil.kt:65)
at com.intellij.station.core.impl.StationConnectionUtilKt.connectWithRetries(StationConnectionUtil.kt:29)
at com.intellij.station.core.discovery.DefaultDiscoveryService$doDiscovery$2.invokeSuspend(DefaultDiscoveryService.kt:37)
at com.intellij.station.core.discovery.DefaultDiscoveryService.doDiscovery(DefaultDiscoveryService.kt:36)
at com.intellij.station.core.discovery.DefaultDiscoveryService$1.invokeSuspend(DefaultDiscoveryService.kt:121)
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.rpc.backend.impl.RemoteApiRegistry":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.kernel.backend.BackendKernelService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.kernel.backend.BackendKernelService":StandaloneCoroutine{Completing} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
- "KernelCoroutineScope":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
- "static nav bar vm":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.UI]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "static nav bar vm":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.UI]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.platform.navbar.frontend.ui.StaticNavBarPanel$handleVm$2.invokeSuspend(StaticNavBarPanel.kt:80)
at com.intellij.platform.navbar.frontend.ui.StaticNavBarPanel.handleVm(StaticNavBarPanel.kt:76)
at com.intellij.platform.navbar.frontend.ui.StaticNavBarPanel$1$1.invokeSuspend(StaticNavBarPanel.kt:70)
at kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invokeSuspend(Merge.kt:213)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
- "static nav bar vm":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.UI]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.navbar.frontend.ui.NewNavBarPanel$2.invokeSuspend(NewNavBarPanel.kt:83)
- "static nav bar vm":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.UI]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "static nav bar vm":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.UI]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.navbar.frontend.ui.NewNavBarPanel$handleItems$2$1.invokeSuspend(NewNavBarPanel.kt:94)
at com.intellij.platform.navbar.frontend.ui.NewNavBarPanel$handleItems$2.invokeSuspend(NewNavBarPanel.kt:90)
at kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invokeSuspend(Merge.kt:213)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
-[x12 of] "static nav bar vm":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.EDT]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.platform.navbar.frontend.ui.NavBarItemComponent$1.invokeSuspend(NavBarItemComponent.kt:77)
- "static nav bar vm":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.UI]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "static nav bar window":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.navbar.frontend.vm.impl.NavBarVmImpl$1.invokeSuspend(NavBarVmImpl.kt:41)
- "static nav bar window":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "static nav bar window":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "static nav bar window":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.navbar.frontend.vm.impl.NavBarVmImpl$2.invokeSuspend(NavBarVmImpl.kt:51)
- "static nav bar window":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "static nav bar window":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.platform.util.coroutines.flow.FlowKt$zipWithNext$1.invokeSuspend(flow.kt:107)
at kotlinx.coroutines.flow.AbstractFlow.collect(Flow.kt:226)
at com.intellij.platform.navbar.frontend.vm.impl.NavBarVmImpl$handleSelectionChange$2.invokeSuspend(NavBarVmImpl.kt:126)
at kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invokeSuspend(Merge.kt:213)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
- "static nav bar window":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.navbar.frontend.vm.impl.NavBarVmImpl$3.invokeSuspend(NavBarVmImpl.kt:54)
- "static nav bar window":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "static nav bar window":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__CollectKt$launchIn$1.invokeSuspend(Collect.kt:46)
- "RemoteKernelScope":supervisor:ChildScope{Active} [ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), Dispatchers.Default]
- "(ApplicationImpl@1262469835 x hg4idea)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.jetbrains.completion.full.line)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.llmInstaller.ui.promo2.AIPromoWindowAdvisor":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.completion.full.line))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.llmInstaller.AiAutoInstallationManager":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.llmInstaller.ui.promo2.AIPromoWindowLauncher":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rd.platform.diagnostics.LogTraceScenariosActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rd.platform.diagnostics.LogTraceScenariosRegistry":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.TipOfTheDayStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x training)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x training))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "training.onboarding.InstallOnboardingTooltip":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.RecentProjectsManagerBase":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.RecentProjectsManagerBase":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.ide.RecentProjectsManagerBase$1.invokeSuspend(RecentProjectsManagerBase.kt:121)
- "com.intellij.ide.RecentProjectsManagerBase":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.ide.RecentProjectsManagerBase":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.ide.RecentProjectsManagerBase":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.ide.RecentProjectsManagerBase$2.invokeSuspend(RecentProjectsManagerBase.kt:143)
- "com.intellij.ide.RecentProjectsManagerBase":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.ide.RecentProjectsManagerBase":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.startup.importSettings.jb.JbAfterRestartSettingsApplier":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.editorconfig.editorconfigjetbrains)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.jetbrains.plugins.yaml)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x2 of] "(ApplicationImpl@1262469835 x com.intellij.properties)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij.gradle)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gradle.startup.GradleProjectSettingsUpdater":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij.gradle))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gradle.service.project.GradleStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gradle.service.project.GradleHeadlessLoggingProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gradle.service.project.GradleVersionUpdateStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gradle.service.project.GradleHeadlessLoggingProjectActivity":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gradle.service.GradleFileModificationTracker":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gradle.service.GradleFileModificationTracker":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at org.jetbrains.plugins.gradle.service.GradleFileModificationTracker$1.invokeSuspend(GradleFileModificationTracker.kt:42)
- "org.jetbrains.plugins.gradle.service.GradleFileModificationTracker":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "(ApplicationImpl@1262469835 x com.intellij.java)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.jetbrains.plugins.javaFX)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.javaFX))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.javaFX.fxml.JavaFxDetectionStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.jetbrains.kotlin)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.kotlin))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.macros.KotlinBundledUsageDetector$ModelChangeListener":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.framework.CreateKotlinSdkActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.macros.KotlinBundledUsageDetector$MyStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.macros.KotlinBundledRefresher":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.debugger.core.filter.JvmDebuggerAddFilterStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.base.projectStructure.forwardDeclarations.KotlinForwardDeclarationsStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.PluginStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.configuration.ui.KotlinConfigurationCheckerStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x2 of] "org.jetbrains.kotlin.idea.update.KotlinPluginUpdateCheckerStartActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.android.tools.gradle.dcl)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x11 of] "(ApplicationImpl@1262469835 x org.jetbrains.kotlin)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.jetbrains.kotlin)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.kotlin))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.onboarding.k2.satisfaction.survey.K2OnboardingPostStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.jetbrains.kotlin)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.kotlin))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.base.analysisApiPlatform.IdeKotlinStatisticsStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.jetbrains.idea.gradle.dsl)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x intellij.jupyter)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x intellij.jupyter))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.jupyter.core.jupyter.connections.settings.listeners.JupyterSettingsAppInitListener":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.jupyter.core.jupyter.editor.outputs.webOutputs.appBasedApi.scriptLoader.utils.JupyterCoroutine":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "Jupyter IO scope":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO]
- "Jupyter EDT scope":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
- "(ApplicationImpl@1262469835 x tanvd.grazi)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.grazie.spellcheck.GrazieCheckers":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "ConfigurationChanged":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default.limitedParallelism(1)]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x tanvd.grazi))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.grazie.ide.notification.GrazieNotificationComponent":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x Git4Idea)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.repo.GitRecentProjectsBranchesService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.repo.GitRecentProjectsBranchesService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at git4idea.repo.GitRecentProjectsBranchesService$2.invokeSuspend(GitRecentProjectsBranchesProvider.kt:85)
- "git4idea.repo.GitRecentProjectsBranchesService":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "git4idea.repo.GitRecentProjectsBranchesService":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x Git4Idea))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.vcs.git.shared.GitDataHoldersInitializer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.stash.ui.GitStashStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.repo.GitCommitTemplateTracker$GitCommitTemplateTrackerStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.commit.GitMergeCommitMessageActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.config.GitNewVersionChecker$Starter":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.ignore.GitIgnoreInStoreDirGeneratorActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.config.GitSetupProjectConfig":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.repo.GitShallowRepositoryCheck":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.commit.GitModalCommitDeprecationNotifier":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.index.GitStageStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.commit.signing.GpgAgentConfiguratorStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.commands.GitHttpAuthServiceImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.rebase.GitRebaseEditorService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.jetbrains.plugins.github)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.github))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.github))":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at org.jetbrains.plugins.github.pullrequest.ui.toolwindow.GHPRToolWindowFactory.manage(GHPRToolWindowFactory.kt:45)
at com.intellij.openapi.wm.impl.ToolWindowManagerImpl$registerToolWindow$3.invokeSuspend(ToolWindowManagerImpl.kt:1195)
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.github))":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at org.jetbrains.plugins.github.pullrequest.ui.toolwindow.GHPRToolWindowController$manageIconInToolbar$2$1.invokeSuspend(GHPRToolWindowFactory.kt:63)
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.github))":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at org.jetbrains.plugins.github.pullrequest.ui.toolwindow.GHPRToolWindowController$manageIconInToolbar$2$2.invokeSuspend(GHPRToolWindowFactory.kt:71)
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.github))":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at org.jetbrains.plugins.github.pullrequest.ui.toolwindow.GHPRToolWindowController$manageIconInToolbar$2$3.invokeSuspend(GHPRToolWindowFactory.kt:83)
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.github))":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.github))":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "org.jetbrains.plugins.github.pullrequest.GHServerVersionsCollector$Initializer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.jetbrains.plugins.gitlab)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.gitlab))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.gitlab))":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at org.jetbrains.plugins.gitlab.mergerequest.ui.toolwindow.GitLabMergeRequestsToolWindowController.manageToolWindow(GitLabToolWindowFactory.kt:53)
at org.jetbrains.plugins.gitlab.mergerequest.ui.toolwindow.GitLabToolWindowFactory.manage(GitLabToolWindowFactory.kt:34)
at com.intellij.openapi.wm.impl.ToolWindowManagerImpl$registerToolWindow$3.invokeSuspend(ToolWindowManagerImpl.kt:1195)
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.gitlab))":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at org.jetbrains.plugins.gitlab.mergerequest.ui.toolwindow.GitLabMergeRequestsToolWindowController$manageToolWindow$2$1.invokeSuspend(GitLabToolWindowFactory.kt:55)
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.gitlab))":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at org.jetbrains.plugins.gitlab.mergerequest.ui.toolwindow.GitLabMergeRequestsToolWindowController$manageToolWindow$2$2.invokeSuspend(GitLabToolWindowFactory.kt:62)
- "org.jetbrains.plugins.gitlab.CachingGitLabServersManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.settingsSync.core.SettingsSyncMain":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.settingsSync.core.SettingsSyncMain":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.settingsSync.core.SettingsSyncBridge$startQueue$1.invokeSuspend(SettingsSyncBridge.kt:133)
- "com.intellij.settingsSync.core.LocalHostNameProvider":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.settingsSync.core.git.SettingsHistoryToolWindowFactory":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.settingsSync.core.plugins.SettingsSyncPluginManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij.configurationScript)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.jetbrains.codeWithMe)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rdserver.settings.BackendBroadcastSettingsStorageService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rdserver.ui.actionPopupMenu.BackendActionManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rdserver.ui.actionPopupMenu.BackendActionManager@20f0f2ca timer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rdserver.ui.actionPopupMenu.BackendActionManager@20f0f2ca timer":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.actionSystem.impl.ActionManagerImpl$MyTimer$2.invokeSuspend(ActionManagerImpl.kt:1268)
- "com.jetbrains.rdserver.ui.actionPopupMenu.BackendActionManager@20f0f2ca timer":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.jetbrains.rdserver.ui.actionPopupMenu.BackendActionManager@20f0f2ca timer":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.openapi.actionSystem.impl.ActionManagerImpl$MyTimer$2$1.invokeSuspend(ActionManagerImpl.kt:1270)
at kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invokeSuspend(Merge.kt:213)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
- "com.intellij.remoteDev.tests.impl.DistributedTestHost":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rdserver.portForwarding.internal.GlobalPortForwardingManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.jetbrains.codeWithMe))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rdserver.unattendedHost.status.UnattendedHostProjectListenerForStatus":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.cwm.plugin.common.toolbar.CodeWithMeToolbarUpdaterProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.cwm.t.N.S.N":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rd.platform.codeWithMe.CodeWithMeCleanupManager":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rdserver.ui.BackendImageIconConverterService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rdserver.ui.BackendDeferredIconStorage":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rdserver.ui.BackendDeferredIconStorage":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.jetbrains.rdserver.ui.BackendDeferredIconStorage$1.invokeSuspend(BackendDeferredIconConverter.kt:86)
- "com.intellij.cwm.plugin.options.CodeWithMeSystemSettings":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.cwm.plugin.options.CodeWithMeSystemSettings":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.cwm.plugin.options.CodeWithMeSystemSettings$1.invokeSuspend(CodeWithMeSystemSettings.kt:68)
- "(ApplicationImpl@1262469835 x com.jetbrains.codeWithMe)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.cwm.plugin.provisioner.ProvisionedCodeWithMeEnterpriseConfiguration":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x2 of] "(ApplicationImpl@1262469835 x com.jetbrains.codeWithMe)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.jetbrains.performancePlugin.async)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij.java)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij.java))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.exbin.deltahex.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.exbin.deltahex.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.exbin.bined.intellij.BinEdPluginStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.jetbrains.java.decompiler)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij.tasks)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.intellij.intelliLang)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.intellij.groovy)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.intellij.groovy))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.groovy.annotator.intentions.dynamic.DynamicMembersStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.jetbrains.idea.maven)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.idea.maven))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.idea.maven.project.MavenProjectsManagerProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.intellij.qodana)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.intellij.qodana))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.qodana.staticAnalysis.QodanaAwaitBackgroundStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.qodana.QodanaStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.qodana.staticAnalysis.QodanaLinterBackgroundStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x intellij.indexing.shared.core)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x intellij.indexing.shared.core))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.indexing.shared.download.IndexDownloadServiceProjectStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.indexing.shared.platform.impl.BundledSharedIndexPostStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.indexing.shared.java.jdk.RunConfigurationsUnknownJdkContributorRefresher":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.jetbrains.plugins.gradle)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.gradle))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gradle.startup.GradleJvmStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gradle.service.editor.GradleDownloadSourceEditorListener":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.demonwav.minecraft-dev)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.demonwav.minecraft-dev))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.demonwav.mcdev.creator.custom.TemplateProjectFinalizerActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.demonwav.mcdev.facet.MinecraftFacetDetector":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.demonwav.mcdev.creator.custom.TemplateService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.github.nikolaikopernik.codecomplexity)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.client.ClientAppSessionsManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "ApplicationImpl@1262469835 container":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "ApplicationImpl@1262469835 container":StandaloneCoroutine{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
- "ApplicationImpl@1262469835 container":StandaloneCoroutine{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
- "com.intellij.psi.stubs.SerializationManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.rd.util.RdCoroutineHost$ScopeHolder":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- SupervisorJobImpl{Active}
- "com.intellij.platform.ide.bootstrap.ScreenReaderStateManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.ide.bootstrap.ScreenReaderStateManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.platform.ide.bootstrap.ScreenReaderStateManager$1.invokeSuspend(ScreenReaderStateManager.kt:19)
- "com.intellij.diagnostic.WriteLockMeasurerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "ApplicationImpl@1262469835 container":StandaloneCoroutine{Completing} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
- "com.intellij.openapi.vfs.newvfs.persistent.VFSHealthCheckServiceStarter":StandaloneCoroutine{Active}, state: RUNNING [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.openapi.vfs.newvfs.persistent.VFSHealthCheckServiceStarter$execute$2.invokeSuspend(VFSHealthChecker.kt:129)
at com.intellij.openapi.vfs.newvfs.persistent.VFSHealthCheckServiceStarter.execute(VFSHealthChecker.kt:102)
at com.intellij.platform.ide.bootstrap.ApplicationLoader$executeAsyncAppInitListeners$1.invokeSuspend(ApplicationLoader.kt:300)
- "com.intellij.openapi.vfs.newvfs.persistent.VFSDefragmentationChecker":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.openapi.vfs.newvfs.persistent.VFSDefragmentationChecker.execute(VFSDefragmentationChecker.kt:71)
at com.intellij.platform.ide.bootstrap.ApplicationLoader$executeAsyncAppInitListeners$1.invokeSuspend(ApplicationLoader.kt:300)
- "com.t.A.S.x":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.t.A.S.x.execute(PluginAgreementUpdateScheduler.kt)
at com.intellij.platform.ide.bootstrap.ApplicationLoader$executeAsyncAppInitListeners$1.invokeSuspend(ApplicationLoader.kt:300)
- "com.intellij.internal.statistic.updater.StatisticsJobsScheduler":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.internal.statistic.updater.StatisticsJobsScheduler$execute$2.invokeSuspend(StatisticsJobsScheduler.kt:73)
at com.intellij.internal.statistic.updater.StatisticsJobsScheduler.execute(StatisticsJobsScheduler.kt:38)
at com.intellij.platform.ide.bootstrap.ApplicationLoader$executeAsyncAppInitListeners$1.invokeSuspend(ApplicationLoader.kt:300)
- "com.intellij.internal.statistic.updater.StatisticsJobsScheduler":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.internal.statistic.updater.StatisticsJobsScheduler.runEventLogStatisticsService(StatisticsJobsScheduler.kt:81)
at com.intellij.internal.statistic.updater.StatisticsJobsScheduler$execute$2$4.invokeSuspend(StatisticsJobsScheduler.kt:66)
-[x3 of] "com.intellij.internal.statistic.updater.StatisticsJobsScheduler":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.internal.statistic.updater.StatisticsJobsScheduler$launchStatisticsSendJob$job$1.invokeSuspend(StatisticsJobsScheduler.kt:98)
- "com.intellij.internal.statistic.updater.StatisticsJobsScheduler":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.internal.statistic.updater.StatisticsJobsSchedulerKt.runValidationRulesUpdate(StatisticsJobsScheduler.kt:114)
at com.intellij.internal.statistic.updater.StatisticsJobsScheduler$execute$2$5.invokeSuspend(StatisticsJobsScheduler.kt:69)
- "com.intellij.openapi.vfs.newvfs.persistent.ExecuteOnCoroutine":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "PersistentFsLoader":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO]
- "org.jetbrains.ide.BuiltInServerManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.ide.ToolboxRestServiceConfig":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.ide.ToolboxRestServiceConfig":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.util.CoroutinesKt$awaitCancellationAndInvoke$1.invokeSuspend(coroutines.kt:35)
- "com.intellij.openapi.util.registry.RegistryManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.configurationStore.statistic.eventLog.FeatureUsageSettingsEvents":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.configurationStore.statistic.eventLog.FeatureUsageSettingsEvents":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.configurationStore.statistic.eventLog.FeatureUsageSettingsEvents$1.invokeSuspend(FeatureUsageSettingsEvents.kt:66)
- "com.intellij.internal.statistic.service.fus.collectors.FUStateUsagesLogger":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.internal.statistic.service.fus.collectors.FUStateUsagesLogger":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.internal.statistic.service.fus.collectors.FUStateUsagesLogger.logApplicationStateRegularly(FUStateUsagesLogger.kt:163)
at com.intellij.internal.statistic.service.fus.collectors.FUStateUsagesLogger$1.invokeSuspend(FUStateUsagesLogger.kt:53)
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.ide.newUsersOnboarding.NewUsersOnboardingStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "FileTypeManager Redetect":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO.limitedParallelism(1)]
- "com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.fileTypes.impl.AlarmAdapterKt$singleAlarm$1.invokeSuspend(AlarmAdapter.kt:23)
- "com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.configurationStore.schemeManager.ApplicationSchemeManagerFactory":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.internal.statistic.eventLog.StatisticsEventLogProvidersHolder":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.internal.statistic.StatisticsServiceApplicationScope":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "app service preloading":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.diagnostic.PerformanceWatcherImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "EDT freeze detector":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.diagnostic.PerformanceWatcherImpl$1.invokeSuspend(PerformanceWatcherImpl.kt:96)
- "EDT freeze detector":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "EDT sampling":StandaloneCoroutine{Active}, state: RUNNING [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.diagnostic.PerformanceWatcherImpl$startEdtSampling$1.invokeSuspend(PerformanceWatcherImpl.kt:130)
- "com.intellij.util.net.ssl.CertificateManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.util.indexing.FileBasedIndexImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.plugins.marketplace.MarketplaceRequests":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.psi.search.FileTypeIndexChangeNotifierService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "FileTypeIndex change notificator":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.psi.search.FileTypeIndexChangeNotifier$worker$1.invokeSuspend(FileTypeIndexChangeNotifier.kt:27)
- "FileTypeIndex change notificator":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "FileTypeIndex change notificator":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.util.coroutines.flow.FlowKt$throttle$1.invokeSuspend(flow.kt:46)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "FileTypeIndex change notificator":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.platform.util.coroutines.flow.FlowKt$throttle$1$latchJob$1.invokeSuspend(flow.kt:41)
- "FileTypeIndex change notificator":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.framework.detection.impl.FrameworkDetectorRegistryImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.ui.customization.CustomActionsSchema":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.ui.laf.LafManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.execution.ExecutorRegistryImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.actionMacro.ActionMacroManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.ide.impl.presentationAssistant.PresentationAssistant":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.intention.impl.IntentionShortcutManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.ui.laf.LafDynamicPluginManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.ui.html.GlobalStyleSheetUpdateService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.ui.html.GlobalStyleSheetUpdateService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.ide.ui.html.GlobalStyleSheetUpdateService$init$2.invokeSuspend(GlobalStyleSheetHolder.kt:104)
- "com.intellij.ide.ui.html.GlobalStyleSheetUpdateService":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.ide.ui.html.GlobalStyleSheetUpdateService":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.openapi.editor.impl.EditorFactoryImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.configurationStore.SaveAndSyncHandlerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.configurationStore.SaveAndSyncHandlerImpl":StandaloneCoroutine{Completing} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
- "com.intellij.configurationStore.SaveAndSyncHandlerImpl":StandaloneCoroutine{Active}, state: RUNNING [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.FlowKt__MergeKt$flattenConcat$1$1.emit(Merge.kt:79)
at kotlinx.coroutines.flow.FlowKt__MergeKt$flatMapConcat$$inlined$map$1$2.emit(Merge.kt:50)
at kotlinx.coroutines.flow.DistinctFlowImpl$collect$2.emit(Distinct.kt:73)
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1581)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__MergeKt$flattenConcat$1$1.emit(Merge.kt:79)
at kotlinx.coroutines.flow.FlowKt__MergeKt$flatMapConcat$$inlined$map$1$2.emit(Merge.kt:50)
at com.intellij.configurationStore.SaveAndSyncHandlerImpl$listenIdleAndActivate$$inlined$filter$1$2.emit(SaveAndSyncHandlerImpl.kt:50)
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1581)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.configurationStore.SaveAndSyncHandlerImpl.listenIdleAndActivate(SaveAndSyncHandlerImpl.kt:263)
at com.intellij.configurationStore.SaveAndSyncHandlerImpl$1$1.invokeSuspend(SaveAndSyncHandlerImpl.kt:64)
-[x2 of] "com.intellij.configurationStore.SaveAndSyncHandlerImpl":ProducerCoroutine{Completing} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
- "com.intellij.configurationStore.SaveAndSyncHandlerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelLimitedFlowMerge$collectTo$2$1.invokeSuspend(Merge.kt:92)
- "com.intellij.configurationStore.SaveAndSyncHandlerImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "refresh known local roots requests flow processing":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at com.intellij.configurationStore.SaveAndSyncHandlerImpl$1$2.invokeSuspend(SaveAndSyncHandlerImpl.kt:78)
- "refresh known local roots requests flow processing":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "refresh opened files requests flow processing":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at com.intellij.configurationStore.SaveAndSyncHandlerImpl$1$3.invokeSuspend(SaveAndSyncHandlerImpl.kt:95)
- "refresh opened files requests flow processing":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "save requests flow processing":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.configurationStore.SaveAndSyncHandlerImpl$1$4.invokeSuspend(SaveAndSyncHandlerImpl.kt:104)
- "background sync":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.configurationStore.SaveAndSyncHandlerImpl$startBackgroundSync$job$1.invokeSuspend(SaveAndSyncHandlerImpl.kt:370)
- "com.intellij.openapi.progress.impl.PlatformTaskSupport":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.progress.impl.TaskInfoEntityCollector":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.progress.impl.TaskInfoEntityCollector":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at fleet.kernel.rete.ReteKt$tokenSetsFlow$1$1.invokeSuspend(Rete.kt:541)
at kotlinx.coroutines.flow.AbstractFlow.collect(Flow.kt:226)
at com.intellij.openapi.progress.impl.TaskInfoEntityCollectorKt$collectActiveTasks$1.invokeSuspend(TaskInfoEntityCollector.kt:51)
- "com.intellij.platform.project.ProjectIdsStorage":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.project.ProjectIdsStorage":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.util.CoroutinesKt$awaitCancellationAndInvoke$1.invokeSuspend(coroutines.kt:35)
- "com.intellij.util.indexing.diagnostic.IndexDiagnosticDumper":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.IdleTracker":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.IdleTracker":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "Idle listener: com.intellij.compiler.server.BuildManager$$Lambda/0x000001bf5b92cd80":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at com.intellij.ide.IdleTracker$addIdleListener$1.invokeSuspend(IdleTracker.kt:78)
- "Idle listener: com.intellij.compiler.server.BuildManager$$Lambda/0x000001bf5b92cd80":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "(ApplicationImpl@1262469835 x com.jetbrains.codeWithMe)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.station.backend.split.recents.StationRecentProjectsProvider":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.station.backend.split.recents.StationRecentProjectsProvider":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.station.backend.split.recents.StationRecentProjectsProvider$1.invokeSuspend(StationRecentProjectsProvider.kt:37)
- "com.intellij.station.backend.split.recents.StationRecentProjectsProvider":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at com.intellij.station.backend.split.recents.StationRecentProjectsServiceKt$combineStates$1.collect(StationRecentProjectsService.kt:267)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
-[x2 of] "com.intellij.station.backend.split.recents.StationRecentProjectsProvider":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "com.intellij.station.backend.split.recents.StationRecentProjectsProvider":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.station.backend.split.recents.StationRecentProjectsProvider$2.invokeSuspend(StationRecentProjectsProvider.kt:44)
- "com.intellij.station.backend.split.recents.StationRecentProjectsProvider":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.station.backend.split.recents.StationRecentProjectsService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.station.backend.split.recents.StationRecentProjectsService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.station.core.impl.StationSocketConnectionLoop$connectWithRetries$2.invokeSuspend(StationConnectionUtil.kt:65)
at com.intellij.station.core.impl.StationConnectionUtilKt.connectWithRetries(StationConnectionUtil.kt:29)
at com.intellij.station.backend.split.recents.StationRecentProjectsService$1.invokeSuspend(StationRecentProjectsService.kt:88)
- "com.intellij.station.backend.split.recents.StationRecentProjectProgressManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.station.backend.split.recents.StationRecentProjectProgressManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.station.backend.split.recents.StationRecentProjectProgressManager$1.invokeSuspend(StationRecentProjectsProvider.kt:130)
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.jetbrains.codeWithMe))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.station.backend.split.recents.StationRecentProjectsServiceProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.eel.impl.provider.EelNioBridgeServiceImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.util.indexing.events.ChangedFilesCollector":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "FileBasedIndex Vfs Event Processor":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO.limitedParallelism(1)]
- "ProjectImpl@1920826041 container":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "project service preloading":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "project activities":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.daemon.impl.DaemonCodeAnalyzerStatusBarUpdater":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "run activity":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.codeInsight.daemon.impl.StatusBarUpdaterKt.initStatusBarUpdater(StatusBarUpdater.kt:60)
at com.intellij.codeInsight.daemon.impl.DaemonCodeAnalyzerStatusBarUpdater$execute$2.invokeSuspend(StatusBarUpdater.kt:35)
at com.intellij.ide.startup.impl.StartupManagerImplKt$launchActivity$1.invokeSuspend(StartupManagerImpl.kt:511)
- "run activity":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "run activity":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.openapi.wm.impl.WindowDressingStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.actions.ReaderModeEditorSettingsListener":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.navigation.InitCtrlMouseHandlerActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.facet.impl.pointers.FacetPointersPostStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.execution.runToolbar.RunToolbarInitializeService":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.usages.impl.rules.UsageFilteringRulesActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.workspaceModel.ide.impl.WorkspaceEntitiesLifecycleActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "run activity":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.workspaceModel.ide.impl.WorkspaceEntitiesLifecycleActivity$execute$2.invokeSuspend(WorkspaceEntitiesLifecycleActivity.kt:35)
at com.intellij.workspaceModel.ide.impl.WorkspaceEntitiesLifecycleActivity.execute(WorkspaceEntitiesLifecycleActivity.kt:24)
at com.intellij.ide.startup.impl.StartupManagerImplKt$launchActivity$1.invokeSuspend(StartupManagerImpl.kt:511)
- "com.intellij.workspaceModel.ide.impl.OrphanageActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.actions.IdeScalePostStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.fileTypes.impl.ApproveRemovedMappingsActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vfs.encoding.EncodingProjectManagerStartUpActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.ui.localization.statistics.StartupStatisticsListener":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.actions.PowerSaveModeNotifier":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.actions.EssentialHighlightingNotifier":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.xml.breadcrumbs.BreadcrumbsInitializingActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.diagnostic.AnalyzePendingSnapshotActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.ide.diagnostic.startUpPerformanceReporter.StartupMetricCollector":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.startup.CheckProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.project.module.ModuleStateInitializer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.execution.impl.RunConfigurationFeatureCollector":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.execution.startup.ProjectStartupRunner":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.util.indexing.projectFilter.ProjectIndexableFilesFilterHealthCheckStarter":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "run activity":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at com.intellij.util.indexing.projectFilter.ProjectIndexableFilesFilterHealthCheckStarter.execute(ProjectIndexableFilesFilterHealthCheck.kt:61)
at com.intellij.ide.startup.impl.StartupManagerImplKt$launchActivity$1.invokeSuspend(StartupManagerImpl.kt:511)
- "com.intellij.codeInsight.folding.impl.FoldingHintPostStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.codeVision.CodeVisionInitializer$CodeVisionInitializerStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.scratch.workspace.ScratchWorkspaceStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "run activity":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.ide.scratch.workspace.ScratchWorkspaceStartupActivity$execute$2.invokeSuspend(ScratchWorkspaceStartupActivity.kt:30)
at com.intellij.ide.scratch.workspace.ScratchWorkspaceStartupActivity.execute(ScratchWorkspaceStartupActivity.kt:23)
at com.intellij.ide.startup.impl.StartupManagerImplKt$launchActivity$1.invokeSuspend(StartupManagerImpl.kt:511)
- "com.intellij.codeInsight.highlighting.BackgroundHighlighterProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.documentation.DocumentationSettingsListener":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.projectRoots.impl.UnknownSdkStartupChecker":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "run activity":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.ide.startup.impl.StartupManagerImplKt$launchActivity$1.invokeSuspend(StartupManagerImpl.kt:511)
- "com.intellij.ide.bookmark.BookmarksStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.refactoring.suggested.SuggestedRefactoringProviderImpl$Startup":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.xdebugger.impl.hotswap.HotSwapManagerInitActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.externalSystem.service.ExternalSystemStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.terminal.block.GenOneTerminalOptionHidingActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.java.debugger.impl.shared.SharedDebuggerInitializationProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ml.inline.completion.impl.MLCompletionProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.completion.full.line.impl.actions.FullLineStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.completion.full.line.impl.platform.logs.SendingLogsRequestActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.execution.impl.frontend.FrontendRunInitializationProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.recentFiles.frontend.model.RecentFileModelSynchronizer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.bookmarks.frontend.LineBookmarkActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.debugger.impl.frontend.evaluate.quick.common.ValueLookupManagerProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerInitializationProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.editor.frontend.FrontendEditorHandler":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.execution.serviceView.ServiceViewStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vcs.impl.VcsInitialization$StartUpActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vcs.changes.shelf.ShelveChangeManagerProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vcs.update.RestoreUpdateTree$RestoreUpdateTreeStartUpActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.vcs.log.impl.IdeVcsProjectLog$InitLogStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.spellchecker.grazie.GrazieSpellCheckerEngine$SpellerLoadActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.tasks.impl.TaskManagerStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jpower8.idea.plugin.statictic.api.StatisticStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.recentFiles.backend.BackendRecentFileModelSynchronizer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.llmInstaller.AiAutoInstallationManager":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.llmInstaller.ui.promo2.AIPromoWindowLauncher":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "training.onboarding.InstallOnboardingTooltip":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.internal.statistic.updater.StatisticsStateCollectorsScheduler$MyStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.ide.newUiOnboarding.newUi.NewUiOnboardingStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.ide.newUsersOnboarding.NewUsersOnboardingStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.SetupJavaProjectFromSourcesActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.framework.detection.impl.FrameworkDetectionManagerProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.execution.testDiscovery.TestDiscoveryIndex$MyPostStartUpActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.projectRoots.impl.ExistingJdkConfigurationActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.projectRoots.impl.ExternalJavaConfigurationActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.daemon.problems.pass.ProjectProblemFileSelectionListenerStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.projectRoots.JavaVersionChecker":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.warmup.JdkWarmupProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.daemon.impl.IdeaLibDependencyNotifier":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.jarRepository.RepositoryLibrarySynchronizer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.pom.java.AcceptedLanguageLevelsSettingsStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.FileNotInSourceRootChecker":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gradle.service.project.GradleStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gradle.service.project.GradleHeadlessLoggingProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.java.execution.impl.backend.JavaAutoRunTrackerActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.framework.CreateKotlinSdkActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.macros.KotlinBundledUsageDetector$MyStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.macros.KotlinBundledRefresher":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.debugger.core.filter.JvmDebuggerAddFilterStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.base.projectStructure.forwardDeclarations.KotlinForwardDeclarationsStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.PluginStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.configuration.ui.KotlinConfigurationCheckerStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.onboarding.k2.satisfaction.survey.K2OnboardingPostStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.base.analysisApiPlatform.IdeKotlinStatisticsStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.performancePlugin.PerformanceTestTotalTimeTimer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.jupyter.core.jupyter.connections.settings.listeners.JupyterSettingsAppInitListener":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.compose.ide.plugin.resources.ComposeResourcesGenerationService$ComposeResourcesWatcherActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "run activity":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.ide.startup.impl.StartupManagerImplKt$launchActivity$1.invokeSuspend(StartupManagerImpl.kt:511)
- "run activity":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "run activity":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.platform.util.coroutines.flow.FlowKt$debounceBatch$1.invokeSuspend(flow.kt:147)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.vcs.git.shared.GitDataHoldersInitializer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.stash.ui.GitStashStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.repo.GitCommitTemplateTracker$GitCommitTemplateTrackerStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.commit.GitMergeCommitMessageActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.config.GitNewVersionChecker$Starter":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.mcpserver.impl.McpServerService$MyProjectListener":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.mcpserver.impl.McpClientDetectionActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rdserver.unattendedHost.status.UnattendedHostProjectListenerForStatus":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.cwm.plugin.common.toolbar.CodeWithMeToolbarUpdaterProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.cwm.t.N.S.N":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.station.backend.split.recents.StationRecentProjectsServiceProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.exbin.bined.intellij.BinEdPluginStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.groovy.annotator.intentions.dynamic.DynamicMembersStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.idea.maven.project.MavenProjectsManagerProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.qodana.staticAnalysis.QodanaAwaitBackgroundStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.qodana.jvm.java.QodanaJdkProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.qodana.jvm.java.SdkRootsFixActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.indexing.shared.download.IndexDownloadServiceProjectStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.indexing.shared.platform.impl.BundledSharedIndexPostStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.indexing.shared.java.jdk.RunConfigurationsUnknownJdkContributorRefresher":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gradle.startup.GradleJvmStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.demonwav.mcdev.creator.custom.TemplateProjectFinalizerActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.demonwav.mcdev.facet.MinecraftFacetDetector":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gradle.integrations.maven.GradleProjectStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.execution.ui.ExecutionReasonableHistoryManager":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.ProjectWindowCustomizerListener":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.updateSettings.impl.UpdateCheckerProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.script.IdeStartupScripts":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.database.datagrid.DataGridStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rd.platform.diagnostics.LogTraceScenariosActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.wm.impl.LibraryDependentToolWindowManager":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "run activity":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.wm.impl.LibraryDependentToolWindowManager$execute$2.invokeSuspend(LibraryDependentToolWindowManager.kt:67)
at com.intellij.openapi.wm.impl.LibraryDependentToolWindowManager.execute(LibraryDependentToolWindowManager.kt:38)
at com.intellij.ide.startup.impl.StartupManagerImplKt$launchActivity$1.invokeSuspend(StartupManagerImpl.kt:511)
- "run activity":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "run activity":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.workspaceModel.ide.impl.VirtualFileUrlsLazyInitializer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.workspaceModel.ide.impl.WorkspaceModelCachesInvalidatorBackgroundActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.diagnostic.IdeHeartbeatEventReporter":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.featureStatistics.InternalFlagDetection":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.diagnostic.WindowsDefenderCheckerActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginsAdvertiserStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.projectRoots.impl.jdkDownloader.JdkUpdaterStartup":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.accessibility.AccessibilityUsageTrackerCollector$CollectStatisticsTask":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.plugins.LanguagePluginDetectionStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.notification.impl.RemindLaterActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.plugins.DependencyFeatureCollector":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.diagnostic.opentelemetry.JVMStatsToOTelReporter":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vfs.newvfs.monitoring.VFSInitializationConditionsToFusReporter":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.internal.DumpPluginDescriptorsOnProjectOpenTrigger":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.workspaceModel.ide.impl.jps.serialization.DelayedProjectSynchronizer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.facet.FacetTypeFeatureCollector":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.feedback.csat.CsatNewUserTracker":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.externalSystem.autolink.UnlinkedProjectStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.externalSystem.service.project.manage.ReprocessContentRootDataActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.registry.cloud.ConfigRefreshActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.execution.dashboard.RunDashboardCheckerActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.ChangesToolwindowPassCache":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.compiler.cache.CompilerCacheStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.packaging.impl.artifacts.ArtifactTypeFeatureCollector":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.compiler.backwardRefs.IsUpToDateCheckStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gradle.service.project.GradleVersionUpdateStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.javaFX.fxml.JavaFxDetectionStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x2 of] "org.jetbrains.kotlin.idea.update.KotlinPluginUpdateCheckerStartActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.gradle.statistics.KotlinGradleFUSLoggingActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.grazie.ide.notification.GrazieNotificationComponent":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.ignore.GitIgnoreInStoreDirGeneratorActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.config.GitSetupProjectConfig":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.repo.GitShallowRepositoryCheck":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.commit.GitModalCommitDeprecationNotifier":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.index.GitStageStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.commit.signing.GpgAgentConfiguratorStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.github.pullrequest.GHServerVersionsCollector$Initializer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.jupyter.git.nbstripout.JupyterGitStartup":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rd.platform.codeWithMe.CodeWithMeCleanupManager":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.qodana.QodanaStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.qodana.staticAnalysis.QodanaLinterBackgroundStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.gradleCodeInsightCommon.native.KotlinNativeABICompatibilityChecker":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.TipOfTheDayStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.project.ProjectEntitiesStorage$ProjectEntityScopeService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.project.ProjectEntitiesStorage$ProjectEntityScopeService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.util.CoroutinesKt$awaitCancellationAndInvoke$1.invokeSuspend(coroutines.kt:35)
- "(ProjectImpl@1920826041 x com.intellij.platform.images)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x com.intellij.copyright)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x2 of] "(ProjectImpl@1920826041 x org.jetbrains.plugins.terminal)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x com.intellij.java)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.jarRepository.RepositoryLibraryUtils":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.packaging.impl.artifacts.workspacemodel.ArtifactManagerBridge":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.java.debugger.impl.shared.SharedJavaDebuggerManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.java.debugger.impl.shared.SharedJavaDebuggerManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.java.debugger.impl.shared.SharedJavaDebuggerManager$1.invokeSuspend(SharedJavaDebuggerManager.kt:27)
- "com.intellij.java.debugger.impl.shared.SharedJavaDebuggerManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.java.debugger.impl.shared.SharedJavaDebuggerManager$2.invokeSuspend(SharedJavaDebuggerManager.kt:32)
- "com.intellij.java.debugger.impl.shared.SharedJavaDebuggerManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.codeInsight.daemon.problems.pass.ProjectPsiChangesProcessor":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.daemon.problems.pass.ProjectPsiChangesProcessor":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at com.intellij.codeInsight.daemon.problems.pass.ProjectPsiChangesProcessor$1.invokeSuspend(ProjectProblemFileSelectionListener.kt:129)
- "com.intellij.codeInsight.daemon.problems.pass.ProjectPsiChangesProcessor":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.jarRepository.LibraryIdSynchronizationQueue":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.jarRepository.LibraryIdSynchronizationQueue":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.jarRepository.LibraryIdSynchronizationQueue$1.invokeSuspend(LibraryIdSynchronizationQueue.kt:35)
- "com.intellij.ide.FileNotInSourceRootService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.projectRoots.impl.ExternalJavaConfigurationService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.internal.statistic.libraryUsage.FileImportsCollector":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x10 of] "(ProjectImpl@1920826041 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.debugger.impl.frontend.evaluate.quick.common.ValueLookupManagerSubscriptionService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.debugger.impl.frontend.evaluate.quick.common.ValueLookupManagerSubscriptionService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO]
at fleet.kernel.rete.ReteKt$tokenSetsFlow$1$1.invokeSuspend(Rete.kt:541)
at kotlinx.coroutines.flow.AbstractFlow.collect(Flow.kt:226)
at com.intellij.platform.debugger.impl.frontend.evaluate.quick.common.ValueLookupManagerSubscriptionsKt$subscribeForDebuggingStart$1.invokeSuspend(ValueLookupManagerSubscriptions.kt:21)
- "com.intellij.platform.debugger.impl.frontend.evaluate.quick.common.ValueLookupManagerSubscriptionService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO]
at fleet.kernel.rete.ReteKt$tokenSetsFlow$1$1.invokeSuspend(Rete.kt:541)
at kotlinx.coroutines.flow.AbstractFlow.collect(Flow.kt:226)
at com.intellij.platform.debugger.impl.frontend.evaluate.quick.common.ValueLookupManagerSubscriptionsKt$subscribeForValueHintHideRequest$1.invokeSuspend(ValueLookupManagerSubscriptions.kt:31)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager$currentSession$1.invokeSuspend(FrontendXDebuggerManager.kt:40)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.debugger.impl.frontend.FrontendXDependentBreakpointManagerProxy$1.invokeSuspend(FrontendXDependentBreakpointManagerProxy.kt:32)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":ProducerCoroutine{Active}, state: SUSPENDED [com.intellij.codeWithMe.ClientIdContextElementPrecursor, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), Dispatchers.Default]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.platform.debugger.impl.backend.BackendXDependentBreakpointManagerApi$createDependencyEventsFlow$1.invokeSuspend(BackendXDependentBreakpointManagerApi.kt:98)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.platform.debugger.impl.frontend.FrontendXDependentBreakpointManagerProxy$2.invokeSuspend(FrontendXDependentBreakpointManagerProxy.kt:45)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.debugger.impl.frontend.FrontendXBreakpointManager$1.invokeSuspend(FrontendXBreakpointManager.kt:76)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":ProducerCoroutine{Active}, state: SUSPENDED [com.intellij.codeWithMe.ClientIdContextElementPrecursor, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), Dispatchers.Default]
at com.intellij.platform.debugger.impl.backend.BackendXDebuggerManagerApi$getBreakpoints$eventsFlow$1.invokeSuspend(BackendXDebuggerManagerApi.kt:286)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager$1.invokeSuspend(FrontendXDebuggerManager.kt:52)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager$2.invokeSuspend(FrontendXDebuggerManager.kt:64)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":ProducerCoroutine{Active}, state: SUSPENDED [com.intellij.codeWithMe.ClientIdContextElementPrecursor, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), Dispatchers.Default]
at kotlinx.coroutines.channels.ProduceKt.awaitClose(Produce.kt:302)
at com.intellij.platform.debugger.impl.backend.BackendXDebuggerManagerApi$createSessionManagerEvents$1.invokeSuspend(BackendXDebuggerManagerApi.kt:213)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.debugger.impl.frontend.editor.XDebuggerLineChangeHandler$1.invokeSuspend(XDebuggerLineChangeHandler.kt:28)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "FrontendXBreakpointProxy#XBreakpointId(uid=1)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "FrontendXBreakpointProxy#XBreakpointId(uid=1)":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.debugger.impl.frontend.FrontendXBreakpointProxy$1.invokeSuspend(FrontendXBreakpointProxy.kt:119)
- "FrontendXBreakpointProxy#XBreakpointId(uid=1)":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":ProducerCoroutine{Active}, state: SUSPENDED [com.intellij.codeWithMe.ClientIdContextElementPrecursor, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.xdebugger.impl.rpc.XBreakpointDtoKt$toRpc$2.invokeSuspend(XBreakpointDto.kt:143)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":ProducerCoroutine{Active}, state: SUSPENDED [com.intellij.codeWithMe.ClientIdContextElementPrecursor, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":StandaloneCoroutine{Active}, state: SUSPENDED [com.intellij.codeWithMe.ClientIdContextElementPrecursor, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerManager":StandaloneCoroutine{Active}, state: SUSPENDED [com.intellij.codeWithMe.ClientIdContextElementPrecursor, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerBreakpointsDialogListenerCoroutineScope":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerBreakpointsDialogListenerCoroutineScope":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerBreakpointsDialogListenerKt$subscribeOnBreakpointsDialogRequest$1.invokeSuspend(FrontendXDebuggerBreakpointsDialogListener.kt:22)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerBreakpointsDialogListenerCoroutineScope":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.ProduceKt.awaitClose(Produce.kt:302)
at com.intellij.platform.debugger.impl.backend.BackendXDebuggerBreakpointsDialogApi$showDialogRequests$2.invokeSuspend(BackendXDebuggerBreakpointsDialogApi.kt:19)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerBreakpointsDialogListenerCoroutineScope":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.xdebugger.impl.breakpoints.ui.BreakpointsDialogFactory$subscribeToShowDialogEvents$1.invokeSuspend(BreakpointsDialogFactory.kt:38)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerBreakpointsDialogListenerCoroutineScope":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerBreakpointsDialogListenerCoroutineScope":StandaloneCoroutine{Completing} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerBreakpointsDialogListenerCoroutineScope":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.xdebugger.impl.breakpoints.ui.BreakpointsDialogFactory$subscribeToShowDialogEvents$1.invokeSuspend(BreakpointsDialogFactory.kt:38)
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerBreakpointsDialogListenerCoroutineScope":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.debugger.impl.frontend.FrontendXBreakpointTypesManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.debugger.impl.frontend.hotswap.FrontendHotSwapManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.debugger.impl.frontend.hotswap.FrontendHotSwapManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.debugger.impl.frontend.hotswap.FrontendHotSwapManager$frontendStatusFlow$1$1.invokeSuspend(FrontendHotSwapManager.kt:28)
- "com.intellij.platform.debugger.impl.frontend.hotswap.FrontendHotSwapManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.debugger.impl.frontend.hotswap.FrontendHotSwapManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.debugger.impl.backend.hotswap.BackendXDebuggerHotSwapApi$currentSessionStatus$2.invokeSuspend(BackendXDebuggerHotSwapApi.kt:28)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.debugger.impl.frontend.hotswap.FrontendHotSwapManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
-[x5 of] "com.intellij.platform.debugger.impl.frontend.hotswap.FrontendHotSwapManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.debugger.impl.frontend.hotswap.HotSwapFloatingToolbarProvider$register$job$1.invokeSuspend(HotSwapFloatingToolbarProvider.kt:206)
- "com.intellij.platform.debugger.impl.frontend.hotswap.FrontendHotSwapManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "(ProjectImpl@1920826041 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vcs.impl.ProjectLevelVcsManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vcs.impl.FileStatusManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vcs.changes.ui.ChangesViewContentManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.vcs.commit.CommitModeManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vcs.impl.VcsInitialization":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vcs.changes.ChangeListManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vcs.changes.shelf.ShelveChangesManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vcs.changes.VcsIgnoreManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vcs.impl.ModuleVcsDetector":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- CompletableDeferredImpl{Active}
- "com.intellij.openapi.vcs.changes.VcsDirtyScopeManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vcs.changes.VcsDirtyScopeVfsListener":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vcs.impl.LineStatusTrackerManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vcs.merge.MergeConflictManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vcs.roots.VcsRootScanner":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vcs.roots.VcsRootScanner":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.vcs.roots.VcsRootScanner$4.invokeSuspend(VcsRootScanner.kt:65)
- "com.intellij.openapi.vcs.roots.VcsRootScanner":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.openapi.vcs.roots.VcsRootScanner":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.vcs.VcsDisposable":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "CommitProgressPanel":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
- "CommitProgressPanel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at com.intellij.vcs.commit.CommitProgressPanel$1.invokeSuspend(CommitProgressPanel.kt:103)
- "CommitProgressPanel":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "(ProjectImpl@1920826041 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.vcs.log.impl.IdeVcsProjectLog":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "Close VCS log":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.util.CoroutinesKt$awaitCancellationAndInvoke$1.invokeSuspend(coroutines.kt:35)
- "UI scope of Vcs Project Log for [D:\PYL\Projects\HMCL]":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.UI.immediate]
- "UI scope of Vcs Project Log for [D:\PYL\Projects\HMCL]":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT.immediate]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.vcs.log.impl.IdeVcsLogManager$createUi$1.invokeSuspend(IdeVcsLogManager.kt:48)
- "(ProjectImpl@1920826041 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vcs.annotate.AnnotationsPreloader":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x com.intellij.modules.json)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x com.jetbrains.sh)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x com.intellij.completion.ml.ranking)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.completion.ml.ngram.NGramModelRunnerManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.tasks.impl.TaskManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x hg4idea)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x Statistic)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x org.editorconfig.editorconfigjetbrains)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x org.jetbrains.plugins.yaml)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x com.intellij.gradle)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x com.intellij.java)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x org.jetbrains.kotlin)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.macros.KotlinBundledUsageDetector":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.base.projectStructure.forwardDeclarations.KotlinForwardDeclarationsModelChangeService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.base.projectStructure.forwardDeclarations.KotlinForwardDeclarationsModelChangeService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at org.jetbrains.kotlin.idea.base.projectStructure.forwardDeclarations.KotlinForwardDeclarationsModelChangeService$1.invokeSuspend(KotlinForwardDeclarationsModelChangeService.kt:40)
- "org.jetbrains.kotlin.idea.core.KotlinPluginDisposable":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x12 of] "(ProjectImpl@1920826041 x org.jetbrains.kotlin)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x org.jetbrains.kotlin)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.core.script.k2.configurations.MainKtsScriptConfigurationProvider":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.core.script.k2.highlighting.DefaultScriptResolutionStrategy":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.core.script.k2.configurations.ScriptConfigurationsProviderImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x org.jetbrains.kotlin)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.gradle.statistics.KotlinGradleFUSLogger":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.gradle.statistics.KotlinGradleFUSLogger":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at org.jetbrains.kotlin.idea.gradle.statistics.KotlinGradleFUSLogger$setup$1.invokeSuspend(KotlinGradleFUSLogger.kt:92)
- "org.jetbrains.kotlin.idea.gradle.statistics.KotlinGradleFUSLogger":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at org.jetbrains.kotlin.idea.gradle.statistics.KotlinGradleFUSLogger$setup$2.invokeSuspend(KotlinGradleFUSLogger.kt:100)
- "(ProjectImpl@1920826041 x com.jetbrains.performancePlugin)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x intellij.jupyter)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x Git4Idea)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.repo.GitRepositoryManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.GitDisposable":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "GitVcs":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x2 of] "GitVcs":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.util.CoroutinesKt$awaitCancellationAndInvoke$1.invokeSuspend(coroutines.kt:35)
- "GitRepositoryImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "GitTagHolder":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.GitDisposable":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at git4idea.remoteApi.GitRepositoryApiImpl$getRepositoriesEvents$2$messageBusConnection$1$1$1.invokeSuspend(GitRepositoryApiImpl.kt:56)
- "git4idea.GitDisposable":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at git4idea.remoteApi.GitIncomingOutgoingStateApiImpl$syncState$2$messageBusConnection$1$1.invokeSuspend(GitIncomingOutgoingStateApiImpl.kt:39)
- "git4idea.GitDisposable":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "git4idea.GitDisposable":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.vcs.git.shared.widget.GitWidgetStateHolder":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.vcs.git.shared.widget.GitWidgetStateHolder":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "com.intellij.vcs.git.shared.widget.GitWidgetStateHolder":ProducerCoroutine{Active}, state: RUNNING [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.vcs.git.shared.widget.GitWidgetStateHolder$state$1.invokeSuspend(GitWidgetStateHolder.kt:22)
at kotlinx.coroutines.flow.AbstractFlow.collect(Flow.kt:226)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.vcs.git.shared.widget.GitWidgetStateHolder":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.vcs.git.shared.widget.GitWidgetStateHolder$special$$inlined$flatMapLatest$1.invokeSuspend(GitWidgetStateHolder.kt:189)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
- "com.intellij.vcs.git.shared.widget.GitWidgetStateHolder":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.ProduceKt.awaitClose(Produce.kt:302)
at git4idea.remoteApi.GitWidgetApiImpl$getWidgetState$2.invokeSuspend(GitWidgetApiImpl.kt:82)
at kotlinx.coroutines.flow.CallbackFlowBuilder.collectTo(Builders.kt:330)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "git4idea.ui.branch.GitBranchManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.repo.GitRepositoryIdCache":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.vcs.git.shared.repo.GitRepositoriesHolder":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "Git repository state synchronization":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "Git repository state synchronization":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.vcs.git.shared.repo.GitRepositoriesHolder$subscribeToRepoEvents$2.invokeSuspend(GitRepositoriesHolder.kt:92)
- "Git repository state synchronization":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.ProduceKt.awaitClose(Produce.kt:302)
at git4idea.remoteApi.GitRepositoryApiImpl$getRepositoriesEvents$2.invokeSuspend(GitRepositoryApiImpl.kt:67)
at kotlinx.coroutines.flow.CallbackFlowBuilder.collectTo(Builders.kt:330)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "git4idea.repo.GitCommitTemplateTracker":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.commit.GitMergeCommitMessageHolder":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.config.GitNewVersionChecker":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "Git update present check":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at git4idea.config.GitNewVersionChecker$checkNewVersionPeriodicallyOnIdle$1.invokeSuspend(GitVersionUpdateInSettings.kt:97)
- "Git update present check":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.vcs.git.shared.branch.GitInOutStateHolder":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.vcs.git.shared.branch.GitInOutStateHolder":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.vcs.git.shared.branch.GitInOutStateHolder$1.invokeSuspend(GitInOutStateHolder.kt:21)
- "com.intellij.vcs.git.shared.branch.GitInOutStateHolder":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.ProduceKt.awaitClose(Produce.kt:302)
at git4idea.remoteApi.GitIncomingOutgoingStateApiImpl$syncState$2.invokeSuspend(GitIncomingOutgoingStateApiImpl.kt:57)
at kotlinx.coroutines.flow.CallbackFlowBuilder.collectTo(Builders.kt:330)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "git4idea.ignore.GitIgnoreInStoreDirGenerator":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.commit.signing.GpgAgentConfigurator":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.commit.signing.GpgAgentConfigurator":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at git4idea.commit.signing.GpgAgentConfigurator$init$1.invokeSuspend(GpgAgentConfigurator.kt:99)
- "git4idea.commit.signing.GpgAgentConfigurator":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at com.intellij.platform.util.coroutines.flow.FlowKt$debounceBatch$1.invokeSuspend(flow.kt:147)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "git4idea.commit.signing.GpgAgentConfigurationNotificator":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.annotate.GitAnnotationService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x org.jetbrains.plugins.github)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.github.pullrequest.ui.toolwindow.GHPRToolWindowController":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.github.pullrequest.ui.toolwindow.GHPRToolWindowController":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Main]
- "org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
-[x2 of] "org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at com.intellij.collaboration.async.CoroutineUtilKt$mapScoped2$1$1.invokeSuspend(CoroutineUtil.kt:248)
at com.intellij.collaboration.async.CoroutineUtilKt$mapScoped2$1.invokeSuspend(CoroutineUtil.kt:227)
at kotlinx.coroutines.flow.AbstractFlow.collect(Flow.kt:226)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:215)
- "org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.collaboration.async.CoroutineUtilKt$mapScoped2$1$1$1.invokeSuspend(CoroutineUtil.kt:233)
- "org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Main]
-[x3 of] "org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Main]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
-[x2 of] "org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Main]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Main]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Main]
at kotlinx.coroutines.channels.ProduceKt.awaitClose(Produce.kt:302)
at com.intellij.collaboration.auth.PasswordSafeCredentialsRepository$canPersistCredentials$1.invokeSuspend(PasswordSafeCredentialsRepository.kt:38)
at kotlinx.coroutines.flow.CallbackFlowBuilder.collectTo(Builders.kt:330)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Main]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Main]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Main]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
-[x3 of] "org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Main]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
-[x2 of] "org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
-[x3 of] "org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel$selectorVm$2$1.invokeSuspend(GHPRProjectViewModel.kt:57)
- "org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at org.jetbrains.plugins.github.pullrequest.ui.GHPRProjectViewModel$selectorVm$2$2.invokeSuspend(GHPRProjectViewModel.kt:75)
- "org.jetbrains.plugins.github.util.GHHostedRepositoriesManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.github.util.GHHostedRepositoriesManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:215)
- "org.jetbrains.plugins.github.util.GHHostedRepositoriesManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "org.jetbrains.plugins.github.util.GHHostedRepositoriesManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.ProduceKt.awaitClose(Produce.kt:302)
at git4idea.remote.hosting.GitAsyncExtensionsKt$gitRemotesFlow$1.invokeSuspend(gitAsyncExtensions.kt:60)
at kotlinx.coroutines.flow.CallbackFlowBuilder.collectTo(Builders.kt:330)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "org.jetbrains.plugins.github.util.GHHostedRepositoriesManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "org.jetbrains.plugins.github.util.GHHostedRepositoriesManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "org.jetbrains.plugins.github.util.GHHostedRepositoriesManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__TransformKt$runningFold$$inlined$unsafeFlow$1.collect(Transform.kt:111)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "org.jetbrains.plugins.github.util.GHHostedRepositoriesManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at git4idea.remote.hosting.GitAsyncExtensionsKt$discoverServers$1.invokeSuspend(gitAsyncExtensions.kt:133)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "org.jetbrains.plugins.github.util.GHHostedRepositoriesManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "org.jetbrains.plugins.github.util.GHHostedRepositoriesManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "org.jetbrains.plugins.github.util.GHHostedRepositoriesManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.ProduceKt.awaitClose(Produce.kt:302)
at git4idea.remote.hosting.GitAsyncExtensionsKt$gitRemotesFlow$1.invokeSuspend(gitAsyncExtensions.kt:60)
at kotlinx.coroutines.flow.CallbackFlowBuilder.collectTo(Builders.kt:330)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "org.jetbrains.plugins.github.util.GHHostedRepositoriesManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "org.jetbrains.plugins.github.pullrequest.GHRepositoryConnectionManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.github.pullrequest.GHRepositoryConnectionManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.github.pullrequest.GHRepositoryConnectionManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at org.jetbrains.plugins.github.pullrequest.GHRepositoryConnectionManager$1.invokeSuspend(GHRepositoryConnectionManager.kt:47)
- "org.jetbrains.plugins.github.pullrequest.GHRepositoryConnectionManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
- "org.jetbrains.plugins.github.pullrequest.ui.review.GHPROnCurrentBranchService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.github.pullrequest.ui.review.GHPROnCurrentBranchService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
- "org.jetbrains.plugins.github.pullrequest.ui.review.GHPROnCurrentBranchService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__EmittersKt$onStart$$inlined$unsafeFlow$1.collect(Emitters.kt:116)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "org.jetbrains.plugins.github.pullrequest.ui.review.GHPROnCurrentBranchService":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "org.jetbrains.plugins.github.pullrequest.GHServerVersionsCollector":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.github.pullrequest.GHServerVersionsCollector":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.github.pullrequest.GHServerVersionsCollector":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at org.jetbrains.plugins.github.pullrequest.GHServerVersionsCollector$1.invokeSuspend(GHPRStatisticsCollector.kt:296)
- "org.jetbrains.plugins.github.pullrequest.ui.editor.GHPRReviewInEditorController":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x5 of] "org.jetbrains.plugins.github.pullrequest.ui.editor.GHPRReviewInEditorController":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), Dispatchers.Main]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at org.jetbrains.plugins.github.pullrequest.ui.editor.GHPRReviewInEditorController$setupReview$1.invokeSuspend(GHPRReviewInEditorController.kt:60)
- "org.jetbrains.plugins.github.pullrequest.ui.editor.GHPRReviewInEditorController":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), Dispatchers.Main]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "org.jetbrains.plugins.github.pullrequest.ui.editor.GHPRReviewInEditorController":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), Dispatchers.Main]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "org.jetbrains.plugins.github.authentication.accounts.GithubProjectDefaultAccountHolder":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "javaClass":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x org.jetbrains.plugins.gitlab)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gitlab.mergerequest.ui.toolwindow.GitLabMergeRequestsToolWindowController":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gitlab.mergerequest.ui.toolwindow.GitLabMergeRequestsToolWindowController":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Main]
- "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
- "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at com.intellij.collaboration.async.CoroutineUtilKt$mapScoped2$1$1.invokeSuspend(CoroutineUtil.kt:248)
at com.intellij.collaboration.async.CoroutineUtilKt$mapScoped2$1.invokeSuspend(CoroutineUtil.kt:227)
at kotlinx.coroutines.flow.AbstractFlow.collect(Flow.kt:226)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.collaboration.async.CoroutineUtilKt$mapScoped2$1$1$1.invokeSuspend(CoroutineUtil.kt:233)
- "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at com.intellij.collaboration.async.CoroutineUtilKt$mapScoped2$1$1.invokeSuspend(CoroutineUtil.kt:248)
at com.intellij.collaboration.async.CoroutineUtilKt$mapScoped2$1.invokeSuspend(CoroutineUtil.kt:227)
at kotlinx.coroutines.flow.AbstractFlow.collect(Flow.kt:226)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.collaboration.async.CoroutineUtilKt$mapScoped2$1$1$1.invokeSuspend(CoroutineUtil.kt:233)
- "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":StandaloneCoroutine{Active}, state: RUNNING [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
- "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Main]
-[x3 of] "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Main]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
-[x2 of] "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Main]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Main]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Main]
at kotlinx.coroutines.channels.ProduceKt.awaitClose(Produce.kt:302)
at com.intellij.collaboration.auth.PasswordSafeCredentialsRepository$canPersistCredentials$1.invokeSuspend(PasswordSafeCredentialsRepository.kt:38)
at kotlinx.coroutines.flow.CallbackFlowBuilder.collectTo(Builders.kt:330)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Main]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Main]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Main]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
-[x3 of] "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Main]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
-[x2 of] "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
-[x3 of] "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at org.jetbrains.plugins.gitlab.mergerequest.ui.toolwindow.model.GitLabRepositoryAndAccountSelectorViewModel$1.invokeSuspend(GitLabRepositoryAndAccountSelectorViewModel.kt:47)
-[x2 of] "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
-[x2 of] "org.jetbrains.plugins.gitlab.mergerequest.ui.GitLabProjectViewModel":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "org.jetbrains.plugins.gitlab.api.GitLabProjectConnectionManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gitlab.api.GitLabProjectConnectionManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
- "org.jetbrains.plugins.gitlab.api.GitLabProjectConnectionManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at org.jetbrains.plugins.gitlab.api.GitLabProjectConnectionManager$1.invokeSuspend(GitLabProjectConnectionManager.kt:43)
- "org.jetbrains.plugins.gitlab.GitLabProjectsManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gitlab.GitLabProjectsManagerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "org.jetbrains.plugins.gitlab.GitLabProjectsManagerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "org.jetbrains.plugins.gitlab.GitLabProjectsManagerImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.ProduceKt.awaitClose(Produce.kt:302)
at git4idea.remote.hosting.GitAsyncExtensionsKt$gitRemotesFlow$1.invokeSuspend(gitAsyncExtensions.kt:60)
at kotlinx.coroutines.flow.CallbackFlowBuilder.collectTo(Builders.kt:330)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "org.jetbrains.plugins.gitlab.GitLabProjectsManagerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "org.jetbrains.plugins.gitlab.GitLabProjectsManagerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "org.jetbrains.plugins.gitlab.GitLabProjectsManagerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__TransformKt$runningFold$$inlined$unsafeFlow$1.collect(Transform.kt:111)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "org.jetbrains.plugins.gitlab.GitLabProjectsManagerImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at git4idea.remote.hosting.GitAsyncExtensionsKt$discoverServers$1.invokeSuspend(gitAsyncExtensions.kt:133)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "org.jetbrains.plugins.gitlab.GitLabProjectsManagerImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "org.jetbrains.plugins.gitlab.GitLabProjectsManagerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "org.jetbrains.plugins.gitlab.GitLabProjectsManagerImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.ProduceKt.awaitClose(Produce.kt:302)
at git4idea.remote.hosting.GitAsyncExtensionsKt$gitRemotesFlow$1.invokeSuspend(gitAsyncExtensions.kt:60)
at kotlinx.coroutines.flow.CallbackFlowBuilder.collectTo(Builders.kt:330)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "org.jetbrains.plugins.gitlab.GitLabProjectsManagerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "org.jetbrains.plugins.gitlab.mergerequest.ui.review.GitLabMergeRequestOnCurrentBranchService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gitlab.mergerequest.ui.review.GitLabMergeRequestOnCurrentBranchService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__EmittersKt$onStart$$inlined$unsafeFlow$1.collect(Emitters.kt:116)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "org.jetbrains.plugins.gitlab.mergerequest.ui.review.GitLabMergeRequestOnCurrentBranchService":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "org.jetbrains.plugins.gitlab.mergerequest.ui.editor.GitLabMergeRequestEditorReviewController":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x5 of] "org.jetbrains.plugins.gitlab.mergerequest.ui.editor.GitLabMergeRequestEditorReviewController":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), Dispatchers.Main]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at org.jetbrains.plugins.gitlab.mergerequest.ui.editor.GitLabMergeRequestEditorReviewController$setupReview$1.invokeSuspend(GitLabMergeRequestEditorReviewController.kt:54)
- "org.jetbrains.plugins.gitlab.mergerequest.ui.editor.GitLabMergeRequestEditorReviewController":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), Dispatchers.Main]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "org.jetbrains.plugins.gitlab.mergerequest.ui.editor.GitLabMergeRequestEditorReviewController":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), Dispatchers.Main]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "(ProjectImpl@1920826041 x PerforceDirectPlugin)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x com.intellij.configurationScript)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x com.jetbrains.codeWithMe)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rdserver.settings.BackendBroadcastSettingsStorageService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.cwm.plugin.following.FollowMeManagerService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rdserver.execution.BackendRunManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rdserver.toolWindow.BackendServerToolWindowManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x21 of] "com.jetbrains.rdserver.toolWindow.BackendServerToolWindowManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.wm.impl.ToolWindowImpl$1.invokeSuspend(ToolWindowImpl.kt:157)
- "com.jetbrains.rdserver.toolWindow.BackendServerToolWindowManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.jetbrains.rdserver.toolWindow.BackendServerToolWindowManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.cwm.plugin.users.BackendUserManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rdserver.ui.BackendUserFocusManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.cwm.plugin.common.toolbar.CodeWithMeToolbarUpdater":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rdserver.findUsages.BackendUsageViewManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "UsageView":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "Usage View Update Requests":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO.limitedParallelism(3)]
-[x2 of] "(ProjectImpl@1920826041 x com.jetbrains.codeWithMe)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x org.intellij.intelliLang)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x org.intellij.groovy)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x org.jetbrains.idea.maven)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.idea.maven.project.MavenProjectsManagerEx":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.idea.maven.utils.MavenHighlightingUpdater":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x org.intellij.qodana)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.qodana.inspectionKts.KtsInspectionsManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x Coverage)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x org.jetbrains.plugins.gradle)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x org.jetbrains.kotlin)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.gradle.scripting.k2.roots.GradleBuildRootsLocatorImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.gradle.scripting.k2.GradleScriptRefinedConfigurationProvider":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x com.demonwav.minecraft-dev)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.demonwav.mcdev.facet.MinecraftFacetDetector$FacetDetectorScopeProvider":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.client.ClientProjectSessionsManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.fileEditor.impl.PsiAwareFileEditorManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.fileEditor.impl.PsiAwareFileEditorManagerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl$1.invokeSuspend(FileEditorManagerImpl.kt:237)
- "com.intellij.openapi.fileEditor.impl.PsiAwareFileEditorManagerImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.openapi.fileEditor.impl.PsiAwareFileEditorManagerImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.openapi.fileEditor.impl.PsiAwareFileEditorManagerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl$1$invokeSuspend$$inlined$flatMapLatest$1.invokeSuspend(FileEditorManagerImpl.kt:189)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
- "com.intellij.openapi.fileEditor.impl.PsiAwareFileEditorManagerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl$1$invokeSuspend$$inlined$flatMapLatest$2.invokeSuspend(FileEditorManagerImpl.kt:189)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
- "com.intellij.openapi.fileEditor.impl.PsiAwareFileEditorManagerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "com.intellij.openapi.fileEditor.impl.PsiAwareFileEditorManagerImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.openapi.fileEditor.impl.PsiAwareFileEditorManagerImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.openapi.fileEditor.impl.PsiAwareFileEditorManagerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl$special$$inlined$flatMapLatest$1.invokeSuspend(FileEditorManagerImpl.kt:189)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
- "com.intellij.openapi.fileEditor.impl.PsiAwareFileEditorManagerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl$special$$inlined$flatMapLatest$2.invokeSuspend(FileEditorManagerImpl.kt:189)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
- "com.intellij.openapi.fileEditor.impl.PsiAwareFileEditorManagerImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.openapi.fileEditor.impl.PsiAwareFileEditorManagerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.platform.util.coroutines.flow.FlowKt$zipWithNext$1.invokeSuspend(flow.kt:107)
at kotlinx.coroutines.flow.AbstractFlow.collect(Flow.kt:226)
at com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl$2.invokeSuspend(FileEditorManagerImpl.kt:289)
- "com.intellij.openapi.fileEditor.impl.PsiAwareFileEditorManagerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "com.intellij.openapi.fileEditor.impl.PsiAwareFileEditorManagerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl$4.invokeSuspend(FileEditorManagerImpl.kt:298)
- "com.intellij.openapi.fileEditor.impl.PsiAwareFileEditorManagerImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "EditorSplitters file icon update":StandaloneCoroutine{Active}, state: RUNNING [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.openapi.fileEditor.impl.MergingUpdateChannel.start(MergingUpdateChannel.kt:28)
at com.intellij.openapi.fileEditor.impl.EditorsSplitters$3.invokeSuspend(EditorsSplitters.kt:210)
- "com.intellij.openapi.fileEditor.impl.PsiAwareFileEditorManagerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:215)
- "com.intellij.openapi.fileEditor.impl.PsiAwareFileEditorManagerImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.openapi.fileEditor.impl.PsiAwareFileEditorManagerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.openapi.fileEditor.impl.EditorsSplitters$special$$inlined$flatMapLatest$1.invokeSuspend(EditorsSplitters.kt:189)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
- "EditorSplitters frame title update":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.fileEditor.impl.EditorsSplitters$5.invokeSuspend(EditorsSplitters.kt:235)
- "EditorSplitters frame title update":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "EditorSplitters frame title update":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "FileEditorManagerImpl file update":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.openapi.fileEditor.impl.MergingUpdateChannel.start(MergingUpdateChannel.kt:28)
at com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl$processFileUpdateRequests$1.invokeSuspend(FileEditorManagerImpl.kt:418)
- "FileEditorManagerImpl file title update":StandaloneCoroutine{Active}, state: RUNNING [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.openapi.fileEditor.impl.MergingUpdateChannel.start(MergingUpdateChannel.kt:28)
at com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl$processFileUpdateRequests$2.invokeSuspend(FileEditorManagerImpl.kt:421)
- "EditorWindow":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "EditorWindow":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.ui.tabs.impl.JBTabsImpl$addTimerUpdate$1.invokeSuspend(JBTabsImpl.kt:789)
-[x5 of] "EditorWindow":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.fileEditor.impl.EditorWindow$watchForTabActions$1.invokeSuspend(EditorWindow.kt:427)
- "EditorWindow":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "DockableEditorContainerFactory":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "DockableEditorTabbedContainer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "EditorComposite(file=TerracottaState.java)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "EditorComposite(file=TerracottaState.java)":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl$createCompositeByEditorWithModel$1.invokeSuspend(FileEditorManagerImpl.kt:1370)
- "EditorWindow":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.fileEditor.impl.EditorWindow$watchForTabActions$1.invokeSuspend(EditorWindow.kt:427)
- "EditorWindow":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "AsyncEditorLoader(file=TerracottaState.java)":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer.execute(FloatingCodeToolbarEditorCustomizer.kt:28)
at com.intellij.openapi.fileEditor.impl.text.TextEditorImpl$2$1.invokeSuspend(TextEditorImpl.kt:102)
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.actionSystem.impl.FloatingToolbar$1.invokeSuspend(FloatingToolbar.kt:72)
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "org.intellij.plugins.markdown.ui.floating.AddFloatingToolbarTextEditorCustomizer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "com.intellij.notebooks.visualization.ui.NotebookFloatingToolbarCustomizer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "EditorComposite(file=TerracottaManager.java)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "EditorComposite(file=TerracottaManager.java)":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl$createCompositeByEditorWithModel$1.invokeSuspend(FileEditorManagerImpl.kt:1370)
- "AsyncEditorLoader(file=TerracottaManager.java)":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer.execute(FloatingCodeToolbarEditorCustomizer.kt:28)
at com.intellij.openapi.fileEditor.impl.text.TextEditorImpl$2$1.invokeSuspend(TextEditorImpl.kt:102)
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.actionSystem.impl.FloatingToolbar$1.invokeSuspend(FloatingToolbar.kt:72)
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "org.intellij.plugins.markdown.ui.floating.AddFloatingToolbarTextEditorCustomizer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "com.intellij.notebooks.visualization.ui.NotebookFloatingToolbarCustomizer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "EditorWindow":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.fileEditor.impl.EditorWindow$watchForTabActions$1.invokeSuspend(EditorWindow.kt:427)
- "EditorWindow":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "EditorComposite(file=ITerracottaProvider.java)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "EditorComposite(file=ITerracottaProvider.java)":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl$createCompositeByEditorWithModel$1.invokeSuspend(FileEditorManagerImpl.kt:1370)
- "AsyncEditorLoader(file=ITerracottaProvider.java)":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer.execute(FloatingCodeToolbarEditorCustomizer.kt:28)
at com.intellij.openapi.fileEditor.impl.text.TextEditorImpl$2$1.invokeSuspend(TextEditorImpl.kt:102)
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.actionSystem.impl.FloatingToolbar$1.invokeSuspend(FloatingToolbar.kt:72)
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "org.intellij.plugins.markdown.ui.floating.AddFloatingToolbarTextEditorCustomizer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "com.intellij.notebooks.visualization.ui.NotebookFloatingToolbarCustomizer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "EditorWindow":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.fileEditor.impl.EditorWindow$watchForTabActions$1.invokeSuspend(EditorWindow.kt:427)
- "EditorWindow":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "EditorComposite(file=FetchTask.java)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "EditorComposite(file=FetchTask.java)":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl$createCompositeByEditorWithModel$1.invokeSuspend(FileEditorManagerImpl.kt:1370)
- "AsyncEditorLoader(file=FetchTask.java)":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer.execute(FloatingCodeToolbarEditorCustomizer.kt:28)
at com.intellij.openapi.fileEditor.impl.text.TextEditorImpl$2$1.invokeSuspend(TextEditorImpl.kt:102)
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.actionSystem.impl.FloatingToolbar$1.invokeSuspend(FloatingToolbar.kt:72)
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "org.intellij.plugins.markdown.ui.floating.AddFloatingToolbarTextEditorCustomizer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "com.intellij.notebooks.visualization.ui.NotebookFloatingToolbarCustomizer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "EditorWindow":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.fileEditor.impl.EditorWindow$watchForTabActions$1.invokeSuspend(EditorWindow.kt:427)
- "EditorWindow":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "EditorComposite(file=TerracottaMetadata.java)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "EditorComposite(file=TerracottaMetadata.java)":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl$createCompositeByEditorWithModel$1.invokeSuspend(FileEditorManagerImpl.kt:1370)
- "AsyncEditorLoader(file=TerracottaMetadata.java)":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer.execute(FloatingCodeToolbarEditorCustomizer.kt:28)
at com.intellij.openapi.fileEditor.impl.text.TextEditorImpl$2$1.invokeSuspend(TextEditorImpl.kt:102)
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.actionSystem.impl.FloatingToolbar$1.invokeSuspend(FloatingToolbar.kt:72)
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "org.intellij.plugins.markdown.ui.floating.AddFloatingToolbarTextEditorCustomizer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "com.intellij.notebooks.visualization.ui.NotebookFloatingToolbarCustomizer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "EditorWindow":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.fileEditor.impl.EditorWindow$watchForTabActions$1.invokeSuspend(EditorWindow.kt:427)
- "EditorWindow":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.workspaceModel.ide.impl.WorkspaceModelImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.workspaceModel.ide.impl.WorkspaceModelCacheImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.workspaceModel.ide.impl.WorkspaceModelCacheImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at com.intellij.workspaceModel.ide.impl.WorkspaceModelCacheImpl$2.invokeSuspend(WorkspaceModelCacheImpl.kt:84)
- "com.intellij.workspaceModel.ide.impl.WorkspaceModelCacheImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.openapi.project.ExternalStorageConfigurationManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.configurationStore.statistic.eventLog.FeatureUsageSettingsEvents":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.configurationStore.statistic.eventLog.FeatureUsageSettingsEvents":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.configurationStore.statistic.eventLog.FeatureUsageSettingsEvents$1.invokeSuspend(FeatureUsageSettingsEvents.kt:66)
- "com.intellij.workspaceModel.ide.impl.legacyBridge.module.ModuleManagerComponentBridge":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x24 of] "ModuleComponentManager container":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ModuleComponentManager), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ModuleComponentManager x com.intellij.java)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ModuleComponentManager), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ModuleComponentManager x org.jetbrains.security.package-checker)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ModuleComponentManager), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ModuleComponentManager x org.jetbrains.idea.eclipse)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ModuleComponentManager), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ModuleComponentManager x org.jetbrains.idea.maven)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ModuleComponentManager), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ModuleComponentManager x com.demonwav.minecraft-dev)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ModuleComponentManager), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.workspaceModel.ide.impl.legacyBridge.project.ProjectRootManagerBridge":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.kotlin))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.macros.KotlinBundledUsageDetector$ModelChangeListener":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.framework.CreateKotlinSdkActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.macros.KotlinBundledUsageDetector$MyStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.macros.KotlinBundledRefresher":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.debugger.core.filter.JvmDebuggerAddFilterStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.base.projectStructure.forwardDeclarations.KotlinForwardDeclarationsStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.PluginStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.configuration.ui.KotlinConfigurationCheckerStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x2 of] "org.jetbrains.kotlin.idea.update.KotlinPluginUpdateCheckerStartActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.util.indexing.ProjectEntityIndexingService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.backend.observation.PlatformActivityTrackerService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.kotlin))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.gradle.scripting.k2.ProjectGradleSettingsListener":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.externalSystem.service.project.manage.ExternalProjectsManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.startup.impl.StartupManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.workspaceModel.core.fileIndex.impl.WorkspaceFileIndexImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.progress.impl.PerProjectTaskInfoEntityCollector":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.progress.impl.PerProjectTaskInfoEntityCollector":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at fleet.kernel.rete.ReteKt$tokenSetsFlow$1$1.invokeSuspend(Rete.kt:541)
at kotlinx.coroutines.flow.AbstractFlow.collect(Flow.kt:226)
at com.intellij.openapi.progress.impl.TaskInfoEntityCollectorKt$collectActiveTasks$1.invokeSuspend(TaskInfoEntityCollector.kt:51)
- "com.intellij.ide.ProjectWidgetGradientLocationService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "ProjectWidgetGradientLocationService.updateFlow":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.ide.ProjectWidgetGradientLocationService$1.invokeSuspend(ProjectWindowCustomizerService.kt:481)
- "ProjectWidgetGradientLocationService.updateFlow":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "ProjectWidgetGradientLocationService.updateFlow":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "(ProjectImpl@1920826041 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.navbar.frontend.NavBarService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.navbar.frontend.NavBarService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default.limitedParallelism(1)]
- "com.intellij.platform.navbar.frontend.NavBarService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.navbar.frontend.NavBarService$1.invokeSuspend(NavBarService.kt:50)
- "com.intellij.platform.navbar.frontend.NavBarService":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.navbar.frontend.NavBarService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.navbar.frontend.NavBarService$1$1.invokeSuspend(NavBarService.kt:57)
at kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invokeSuspend(Merge.kt:213)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
- "com.intellij.platform.navbar.frontend.NavBarService":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.util.coroutines.flow.FlowKt$throttle$1.invokeSuspend(flow.kt:46)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.navbar.frontend.NavBarService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.platform.util.coroutines.flow.FlowKt$throttle$1$latchJob$1.invokeSuspend(flow.kt:41)
- "com.intellij.platform.navbar.frontend.NavBarService":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.navbar.frontend.NavBarService":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.ProduceKt.awaitClose(Produce.kt:302)
at com.intellij.platform.navbar.monolith.MonolithNavbarServiceDelegate$activityFlow$1.invokeSuspend(MonolithNavBarServiceDelegate.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.configurationStore.schemeManager.ProjectSchemeManagerFactory":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.wm.impl.status.widget.StatusBarWidgetsManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x3 of] "com.intellij.openapi.wm.impl.status.widget.StatusBarWidgetsManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.wm.impl.status.EditorBasedStatusBarPopup$1.invokeSuspend(EditorBasedStatusBarPopup.kt:104)
- "com.intellij.openapi.wm.impl.status.widget.StatusBarWidgetsManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.openapi.wm.impl.status.widget.StatusBarWidgetsManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.openapi.wm.impl.status.widget.StatusBarWidgetsManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.openapi.wm.impl.status.widget.StatusBarWidgetsManager$dataContext$1$currentFileEditor$2$1.invokeSuspend(StatusBarWidgetsManager.kt:54)
at kotlinx.coroutines.flow.AbstractFlow.collect(Flow.kt:226)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "Position-widget-scope":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "Position-widget-scope":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.wm.impl.status.IdeStatusBarImplKt$createComponentByWidgetPresentation$1.invokeSuspend(IdeStatusBarImpl.kt:830)
- "Position-widget-scope":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "Position-widget-scope":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "Position-widget-scope":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "Position-widget-scope":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "Position-widget-scope":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "Position-widget-scope":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "Position-widget-scope":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "Position-widget-scope":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "ReadOnlyAttribute-widget-scope":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "ReadOnlyAttribute-widget-scope":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.wm.impl.status.IdeStatusBarImplKt$createComponentByWidgetPresentation$2.invokeSuspend(IdeStatusBarImpl.kt:847)
- "ReadOnlyAttribute-widget-scope":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "ReadOnlyAttribute-widget-scope":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "ReadOnlyAttribute-widget-scope":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "ReadOnlyAttribute-widget-scope":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "ReadOnlyAttribute-widget-scope":ProducerCoroutine{Completing} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
- "ReadOnlyAttribute-widget-scope":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelLimitedFlowMerge$collectTo$2$1.invokeSuspend(Merge.kt:92)
- "ReadOnlyAttribute-widget-scope":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "ReadOnlyAttribute-widget-scope":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelLimitedFlowMerge$collectTo$2$1.invokeSuspend(Merge.kt:92)
- "(ProjectImpl@1920826041 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.dvcs.repo.VcsRepositoryManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.dvcs.ignore.IgnoredToExcludedSynchronizer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.dvcs.ignore.IgnoredToExcludedSynchronizer":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.dvcs.ignore.IgnoredToExcludedSynchronizer$1.invokeSuspend(IgnoredToExcludedSynchronizer.kt:82)
- "ProjectImpl@1920826041 container":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.wm.impl.status.EditorBasedStatusBarPopup$1.invokeSuspend(EditorBasedStatusBarPopup.kt:104)
- "ProjectImpl@1920826041 container":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "ProjectImpl@1920826041 container":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.openapi.fileEditor.impl.IdeDocumentHistoryImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.multiverse.CodeInsightContextManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.multiverse.CodeInsightContextManagerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.codeInsight.multiverse.CodeInsightContextManagerImpl$subscribeToChanges$1.invokeSuspend(CodeInsightContextManagerImpl.kt:79)
- "com.intellij.codeInsight.multiverse.CodeInsightContextManagerImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.codeInsight.multiverse.CodeInsightContextManagerImpl":ProducerCoroutine{Completing} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
- "com.intellij.codeInsight.multiverse.CodeInsightContextManagerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelLimitedFlowMerge$collectTo$2$1.invokeSuspend(Merge.kt:92)
- "com.intellij.openapi.project.DumbServiceImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.project.DumbServiceImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.GeneratedSourceFileChangeTrackerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.GeneratedSourceFileChangeTrackerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.ide.GeneratedSourceFileChangeTrackerImpl$startHandlingCheckRequests$1.invokeSuspend(GeneratedSourceFileChangeTrackerImpl.kt:58)
- "com.intellij.ide.GeneratedSourceFileChangeTrackerImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.ide.GeneratedSourceFileChangeTrackerImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__LimitKt$takeWhile$$inlined$unsafeFlow$1.collect(Limit.kt:120)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.util.indexing.UnindexedFilesScannerExecutorImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "Scanning (merge parameters)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "Scanning (root)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO]
- "Scanning (root)":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.FlowKt__ReduceKt.first(Reduce.kt:179)
at com.intellij.util.indexing.UnindexedFilesScannerExecutorImpl$1.invokeSuspend(UnindexedFilesScannerExecutorImpl.kt:116)
- "scanning task execution trigger":DeferredCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.FlowKt__ReduceKt.first(Reduce.kt:179)
at com.intellij.util.indexing.UnindexedFilesScannerExecutorImpl$1$1.invokeSuspend(UnindexedFilesScannerExecutorImpl.kt:97)
- "scanning task execution trigger":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "scanning task execution trigger":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "scanning task execution trigger":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "scanning task execution trigger":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "scanning task execution trigger":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
-[x2 of] "scanning task execution trigger":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "scanning task execution trigger":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "scanning task execution trigger":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "scanning task execution trigger":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "com.intellij.codeInspection.ex.ProjectInspectionToolRegistrar":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInspection.ex.ProjectInspectionToolRegistrar":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:215)
- "com.intellij.codeInspection.ex.ProjectInspectionToolRegistrar":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__EmittersKt$onStart$$inlined$unsafeFlow$1.collect(Emitters.kt:116)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.codeInspection.ex.ProjectInspectionToolRegistrar":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.FlowKt__EmittersKt$onEmpty$$inlined$unsafeFlow$1.collect(Emitters.kt:110)
at com.intellij.codeInspection.ex.Dynamic_inspectionsKt$dynamicInspectionsFlow$$inlined$flatMapLatest$1.invokeSuspend(dynamic-inspections.kt:189)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
- "com.intellij.codeInspection.ex.ProjectInspectionToolRegistrar":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.FlowKt__EmittersKt$onEmpty$$inlined$unsafeFlow$1.collect(Emitters.kt:110)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "com.intellij.codeInspection.ex.ProjectInspectionToolRegistrar":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.ProduceKt.awaitClose(Produce.kt:302)
at com.intellij.codeInspection.ex.Dynamic_inspectionsKt$dynamicInspectionsFlow$epUpdatedFlow$1.invokeSuspend(dynamic-inspections.kt:72)
at kotlinx.coroutines.flow.CallbackFlowBuilder.collectTo(Builders.kt:330)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.codeInspection.ex.ProjectInspectionToolRegistrar":LazyStandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.codeInspection.ex.ProjectInspectionToolRegistrar$updateInspectionProfilesSubscription$1.invokeSuspend(ProjectInspectionToolRegistrar.kt:31)
- "com.intellij.ui.EditorNotificationsImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "EditorNotificationsImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ui.EditorNotificationsImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.ui.EditorNotificationsImpl$6.invokeSuspend(EditorNotificationsImpl.kt:113)
- "com.intellij.ui.EditorNotificationsImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.ui.EditorNotificationsImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.xdebugger.impl.XDebuggerManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "XLineBreakpointManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "XDebuggerExecutionPointManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
- "XDebuggerExecutionPointManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "XDebuggerExecutionPointManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "XDebuggerExecutionPointManager/UI":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
-[x2 of] "XDebuggerExecutionPointManager/UI":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.xdebugger.impl.ui.ExecutionPositionUiKt$showExecutionPositionUi$1.invokeSuspend(ExecutionPositionUi.kt:49)
- "XDebuggerExecutionPointManager/UI":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "XDebuggerExecutionPointManager/UI":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "XDebuggerExecutionPointManager/UI":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.xdebugger.impl.ui.ExecutionPositionUiKt$showExecutionPositionUi$1$2.invokeSuspend(ExecutionPositionUi.kt:51)
at kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invokeSuspend(Merge.kt:213)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
- "XDebuggerExecutionPointManager/UI":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.xdebugger.impl.XDebuggerExecutionPointManager$1.invokeSuspend(XDebuggerExecutionPointManager.kt:69)
- "XBreakpoint":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "XBreakpoint":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.util.CoroutinesKt$awaitCancellationAndInvoke$1.invokeSuspend(coroutines.kt:35)
-[x3 of] "XBreakpoint":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "XBreakpoint":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), Dispatchers.Default]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.util.CoroutinesKt$awaitCancellationAndInvoke$1.invokeSuspend(coroutines.kt:35)
- "com.intellij.codeInsight.daemon.impl.DaemonCodeAnalyzerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.daemon.impl.WolfTheProblemSolverImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.daemon.impl.WolfTheProblemSolverImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.codeInsight.daemon.impl.WolfListeners$1.invokeSuspend(WolfListeners.kt:38)
- "com.intellij.ui.docking.impl.DockManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "ProjectImpl@1920826041 container":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.notification.impl.NotificationsToolWindowFactory$manage$2.invokeSuspend(NotificationsToolWindow.kt:45)
at com.intellij.notification.impl.NotificationsToolWindowFactory.manage(NotificationsToolWindow.kt:38)
at com.intellij.openapi.wm.impl.ToolWindowManagerImpl$registerToolWindow$3.invokeSuspend(ToolWindowManagerImpl.kt:1195)
- "com.intellij.ide.projectView.impl.ProjectViewPaneSupportService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.vcs.commit.ChangesViewToolWindowRefresher":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.vcs.commit.ChangesViewToolWindowRefresher":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at com.intellij.vcs.commit.ChangesViewToolWindowRefresher$1.invokeSuspend(ChangesViewToolWindowRefresher.kt:24)
- "com.intellij.vcs.commit.ChangesViewToolWindowRefresher":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.openapi.vcs.impl.VcsInitialization$StartUpActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vcs.changes.shelf.ShelveChangeManagerProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vcs.update.RestoreUpdateTree$RestoreUpdateTreeStartUpActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.ChangesToolwindowPassCache":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.terminal))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.terminal.block.GenOneTerminalOptionHidingActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x Statistic))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jpower8.idea.plugin.statictic.api.StatisticStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.completion.full.line))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.llmInstaller.AiAutoInstallationManager":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.llmInstaller.ui.promo2.AIPromoWindowLauncher":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x training))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "training.onboarding.InstallOnboardingTooltip":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x2 of] "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij.gradle))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gradle.service.project.GradleStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gradle.service.project.GradleHeadlessLoggingProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gradle.service.project.GradleVersionUpdateStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.github))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.github))":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at org.jetbrains.plugins.github.pullrequest.ui.toolwindow.GHPRToolWindowFactory.manage(GHPRToolWindowFactory.kt:45)
at com.intellij.openapi.wm.impl.ToolWindowManagerImpl$registerToolWindow$3.invokeSuspend(ToolWindowManagerImpl.kt:1195)
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.github))":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at org.jetbrains.plugins.github.pullrequest.ui.toolwindow.GHPRToolWindowController$manageIconInToolbar$2$1.invokeSuspend(GHPRToolWindowFactory.kt:63)
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.github))":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at org.jetbrains.plugins.github.pullrequest.ui.toolwindow.GHPRToolWindowController$manageIconInToolbar$2$2.invokeSuspend(GHPRToolWindowFactory.kt:71)
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.github))":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at org.jetbrains.plugins.github.pullrequest.ui.toolwindow.GHPRToolWindowController$manageIconInToolbar$2$3.invokeSuspend(GHPRToolWindowFactory.kt:83)
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.github))":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.github))":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "org.jetbrains.plugins.github.pullrequest.GHServerVersionsCollector$Initializer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.gitlab))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.gitlab))":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at org.jetbrains.plugins.gitlab.mergerequest.ui.toolwindow.GitLabMergeRequestsToolWindowController.manageToolWindow(GitLabToolWindowFactory.kt:53)
at org.jetbrains.plugins.gitlab.mergerequest.ui.toolwindow.GitLabToolWindowFactory.manage(GitLabToolWindowFactory.kt:34)
at com.intellij.openapi.wm.impl.ToolWindowManagerImpl$registerToolWindow$3.invokeSuspend(ToolWindowManagerImpl.kt:1195)
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.gitlab))":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at org.jetbrains.plugins.gitlab.mergerequest.ui.toolwindow.GitLabMergeRequestsToolWindowController$manageToolWindow$2$1.invokeSuspend(GitLabToolWindowFactory.kt:55)
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.gitlab))":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at org.jetbrains.plugins.gitlab.mergerequest.ui.toolwindow.GitLabMergeRequestsToolWindowController$manageToolWindow$2$2.invokeSuspend(GitLabToolWindowFactory.kt:62)
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij.java))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.util.indexing.ProjectFileBasedIndexStartupActivityScope":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x intellij.indexing.shared.core)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.indexing.shared.download.ShadeIndexDumbModeTracker":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.indexing.shared.download.SharedIndexSuggestionService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.ide.impl.statistic.ToolWindowStateCollector":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "Tool window resize collector for Project":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at com.intellij.platform.ide.impl.statistic.ToolWindowStateCollector$Collector$job$1.invokeSuspend(ToolWindowStateListener.kt:69)
- "Tool window resize collector for Project":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "Tool window resize collector for Find":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at com.intellij.platform.ide.impl.statistic.ToolWindowStateCollector$Collector$job$1.invokeSuspend(ToolWindowStateListener.kt:69)
- "Tool window resize collector for Find":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.util.indexing.DumbModeWhileScanningTrigger":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.util.indexing.DumbModeWhileScanningTrigger":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__ReduceKt.first(Reduce.kt:179)
at com.intellij.util.indexing.DumbModeWhileScanningTrigger$subscribe$1.invokeSuspend(DumbModeWhileScanningTrigger.kt:52)
- "com.intellij.util.indexing.DumbModeWhileScanningTrigger":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.util.indexing.DumbModeWhileScanningTrigger":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.util.indexing.PerProjectIndexingQueue$estimatedFilesCount$$inlined$flatMapLatest$1.invokeSuspend(PerProjectIndexingQueue.kt:189)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
- "com.intellij.codeInsight.daemon.impl.DaemonCodeAnalyzerStatusBarUpdater":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "run activity":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.codeInsight.daemon.impl.StatusBarUpdaterKt.initStatusBarUpdater(StatusBarUpdater.kt:60)
at com.intellij.codeInsight.daemon.impl.DaemonCodeAnalyzerStatusBarUpdater$execute$2.invokeSuspend(StatusBarUpdater.kt:35)
at com.intellij.ide.startup.impl.StartupManagerImplKt$launchActivity$1.invokeSuspend(StartupManagerImpl.kt:511)
- "run activity":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "run activity":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.openapi.wm.impl.WindowDressingStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.actions.ReaderModeEditorSettingsListener":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.navigation.InitCtrlMouseHandlerActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.facet.impl.pointers.FacetPointersPostStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.execution.runToolbar.RunToolbarInitializeService":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.usages.impl.rules.UsageFilteringRulesActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.workspaceModel.ide.impl.WorkspaceEntitiesLifecycleActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "run activity":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.workspaceModel.ide.impl.WorkspaceEntitiesLifecycleActivity$execute$2.invokeSuspend(WorkspaceEntitiesLifecycleActivity.kt:35)
at com.intellij.workspaceModel.ide.impl.WorkspaceEntitiesLifecycleActivity.execute(WorkspaceEntitiesLifecycleActivity.kt:24)
at com.intellij.ide.startup.impl.StartupManagerImplKt$launchActivity$1.invokeSuspend(StartupManagerImpl.kt:511)
- "com.intellij.workspaceModel.ide.impl.OrphanageActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.actions.IdeScalePostStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.fileTypes.impl.ApproveRemovedMappingsActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vfs.encoding.EncodingProjectManagerStartUpActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.ui.localization.statistics.StartupStatisticsListener":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.actions.PowerSaveModeNotifier":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.actions.EssentialHighlightingNotifier":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.xml.breadcrumbs.BreadcrumbsInitializingActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.diagnostic.AnalyzePendingSnapshotActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.ide.diagnostic.startUpPerformanceReporter.StartupMetricCollector":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.startup.CheckProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.project.module.ModuleStateInitializer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.execution.impl.RunConfigurationFeatureCollector":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.execution.startup.ProjectStartupRunner":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.util.indexing.projectFilter.ProjectIndexableFilesFilterHealthCheckStarter":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "run activity":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at com.intellij.util.indexing.projectFilter.ProjectIndexableFilesFilterHealthCheckStarter.execute(ProjectIndexableFilesFilterHealthCheck.kt:61)
at com.intellij.ide.startup.impl.StartupManagerImplKt$launchActivity$1.invokeSuspend(StartupManagerImpl.kt:511)
- "com.intellij.codeInsight.folding.impl.FoldingHintPostStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.codeVision.CodeVisionInitializer$CodeVisionInitializerStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.scratch.workspace.ScratchWorkspaceStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "run activity":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.ide.scratch.workspace.ScratchWorkspaceStartupActivity$execute$2.invokeSuspend(ScratchWorkspaceStartupActivity.kt:30)
at com.intellij.ide.scratch.workspace.ScratchWorkspaceStartupActivity.execute(ScratchWorkspaceStartupActivity.kt:23)
at com.intellij.ide.startup.impl.StartupManagerImplKt$launchActivity$1.invokeSuspend(StartupManagerImpl.kt:511)
- "com.intellij.codeInsight.highlighting.BackgroundHighlighterProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.documentation.DocumentationSettingsListener":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.projectRoots.impl.UnknownSdkStartupChecker":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "run activity":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.ide.startup.impl.StartupManagerImplKt$launchActivity$1.invokeSuspend(StartupManagerImpl.kt:511)
- "com.intellij.ide.bookmark.BookmarksStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.refactoring.suggested.SuggestedRefactoringProviderImpl$Startup":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.xdebugger.impl.hotswap.HotSwapManagerInitActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.externalSystem.service.ExternalSystemStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij.java))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.java.debugger.impl.shared.SharedDebuggerInitializationProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.SetupJavaProjectFromSourcesActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.execution.testDiscovery.TestDiscoveryIndex$MyPostStartUpActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.projectRoots.impl.ExistingJdkConfigurationActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.projectRoots.impl.ExternalJavaConfigurationActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.daemon.problems.pass.ProjectProblemFileSelectionListenerStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.projectRoots.JavaVersionChecker":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.warmup.JdkWarmupProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.daemon.impl.IdeaLibDependencyNotifier":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.jarRepository.RepositoryLibrarySynchronizer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.pom.java.AcceptedLanguageLevelsSettingsStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.FileNotInSourceRootChecker":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.compiler.cache.CompilerCacheStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.packaging.impl.artifacts.ArtifactTypeFeatureCollector":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.compiler.backwardRefs.IsUpToDateCheckStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.completion.full.line))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ml.inline.completion.impl.MLCompletionProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.completion.full.line))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.completion.full.line.impl.actions.FullLineStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.completion.full.line.impl.platform.logs.SendingLogsRequestActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.execution.impl.frontend.FrontendRunInitializationProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.recentFiles.frontend.model.RecentFileModelSynchronizer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.bookmarks.frontend.LineBookmarkActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.debugger.impl.frontend.evaluate.quick.common.ValueLookupManagerProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerInitializationProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.editor.frontend.FrontendEditorHandler":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.execution.serviceView.ServiceViewStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.vcs.log.impl.IdeVcsProjectLog$InitLogStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.spellchecker.grazie.GrazieSpellCheckerEngine$SpellerLoadActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.tasks.impl.TaskManagerStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.recentFiles.backend.BackendRecentFileModelSynchronizer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.internal.statistic.updater.StatisticsStateCollectorsScheduler$MyStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.ide.newUiOnboarding.newUi.NewUiOnboardingStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.ide.newUsersOnboarding.NewUsersOnboardingStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.framework.detection.impl.FrameworkDetectionManagerProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij.java))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.java.execution.impl.backend.JavaAutoRunTrackerActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.kotlin))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.onboarding.k2.satisfaction.survey.K2OnboardingPostStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.kotlin))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.base.analysisApiPlatform.IdeKotlinStatisticsStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.jetbrains.performancePlugin))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.performancePlugin.PerformanceTestTotalTimeTimer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.performancePlugin.ProjectIndexingComponent":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x intellij.jupyter))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.jupyter.core.jupyter.connections.settings.listeners.JupyterSettingsAppInitListener":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij.compose))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.compose.ide.plugin.resources.ComposeResourcesGenerationService$ComposeResourcesWatcherActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "run activity":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.ide.startup.impl.StartupManagerImplKt$launchActivity$1.invokeSuspend(StartupManagerImpl.kt:511)
- "run activity":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "run activity":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.platform.util.coroutines.flow.FlowKt$debounceBatch$1.invokeSuspend(flow.kt:147)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x Git4Idea))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.vcs.git.shared.GitDataHoldersInitializer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.stash.ui.GitStashStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.repo.GitCommitTemplateTracker$GitCommitTemplateTrackerStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.commit.GitMergeCommitMessageActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.config.GitNewVersionChecker$Starter":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.ignore.GitIgnoreInStoreDirGeneratorActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.config.GitSetupProjectConfig":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.repo.GitShallowRepositoryCheck":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.commit.GitModalCommitDeprecationNotifier":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.index.GitStageStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "git4idea.commit.signing.GpgAgentConfiguratorStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij.mcpServer))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.mcpserver.impl.McpServerService$MyProjectListener":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.mcpserver.impl.McpClientDetectionActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.jetbrains.codeWithMe))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rdserver.unattendedHost.status.UnattendedHostProjectListenerForStatus":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.cwm.plugin.common.toolbar.CodeWithMeToolbarUpdaterProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.cwm.t.N.S.N":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rd.platform.codeWithMe.CodeWithMeCleanupManager":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.jetbrains.codeWithMe))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.station.backend.split.recents.StationRecentProjectsServiceProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.navigation.CtrlMouseHandler2":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.exbin.deltahex.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.exbin.bined.intellij.BinEdPluginStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.intellij.groovy))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.groovy.annotator.intentions.dynamic.DynamicMembersStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.idea.maven))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.idea.maven.project.MavenProjectsManagerProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.intellij.qodana))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.qodana.staticAnalysis.QodanaAwaitBackgroundStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.qodana.QodanaStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.qodana.staticAnalysis.QodanaLinterBackgroundStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.intellij.qodana))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.qodana.jvm.java.QodanaJdkProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.qodana.jvm.java.SdkRootsFixActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x intellij.indexing.shared.core))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.indexing.shared.download.IndexDownloadServiceProjectStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.indexing.shared.platform.impl.BundledSharedIndexPostStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.indexing.shared.java.jdk.RunConfigurationsUnknownJdkContributorRefresher":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.gradle))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gradle.startup.GradleJvmStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gradle.service.editor.GradleDownloadSourceEditorListener":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.demonwav.minecraft-dev))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.demonwav.mcdev.creator.custom.TemplateProjectFinalizerActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.demonwav.mcdev.facet.MinecraftFacetDetector":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.gradle))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gradle.integrations.maven.GradleProjectStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.execution.ui.ExecutionReasonableHistoryManager":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.ProjectWindowCustomizerListener":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.updateSettings.impl.UpdateCheckerProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.script.IdeStartupScripts":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.database.datagrid.DataGridStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.rd.platform.diagnostics.LogTraceScenariosActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.project.SmartModeScheduler":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.project.SmartModeScheduler":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.openapi.project.SmartModeScheduler$2.invokeSuspend(SmartModeScheduler.kt:63)
- "com.intellij.openapi.project.SmartModeScheduler":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.openapi.project.SmartModeScheduler$3.invokeSuspend(SmartModeScheduler.kt:69)
- "com.intellij.ide.actions.ui.ideScaleIndicator.IdeScaleIndicatorManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.actions.ui.ideScaleIndicator.IdeScaleIndicatorManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.ide.actions.ui.ideScaleIndicator.IdeScaleIndicatorManager$1.invokeSuspend(IdeScaleIndicatorManager.kt:39)
- "com.intellij.ide.actions.ui.ideScaleIndicator.IdeScaleIndicatorManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.project.module.ModulesStateService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "ModulesStateService.loadModuleNamesAndSubscribe":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "ModulesStateService.loadModuleNamesAndSubscribe":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.project.module.ModulesStateService$loadModuleNamesAndSubscribe$1.invokeSuspend(ModulesStateService.kt:36)
- "ModulesStateService.loadModuleNamesAndSubscribe":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.ProduceKt.awaitClose(Produce.kt:302)
at com.intellij.platform.project.backend.module.ModuleStateApiImpl$getModulesUpdateEvents$flow$1.invokeSuspend(ModuleStateApiImpl.kt:53)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.codeInsight.highlighting.BackgroundHighlighterPerProject":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.projectRoots.impl.UnknownSdkTrackerQueue":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.bookmark.BookmarksManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.xdebugger.impl.hotswap.HotSwapDebugSessionManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.execution.impl.frontend.FrontendRunContentService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.recentFiles.shared.RecentFilesCoroutineScopeProvider":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "RecentFilesModel frontend/backend synchronisation":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "RecentFilesModel frontend/backend synchronisation":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.platform.recentFiles.frontend.model.FrontendRecentFilesModel.subscribeToBackendRecentFilesUpdates(FrontendRecentFilesModel.kt:100)
at com.intellij.platform.recentFiles.frontend.model.RecentFileModelSynchronizer$execute$2.invokeSuspend(RecentFileModelSynchronizer.kt:21)
- "RecentFilesModel frontend/backend synchronisation":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.platform.recentFiles.frontend.model.FrontendRecentFilesModel.subscribeToBackendRecentFilesUpdates(FrontendRecentFilesModel.kt:100)
at com.intellij.platform.recentFiles.frontend.model.RecentFileModelSynchronizer$execute$3.invokeSuspend(RecentFileModelSynchronizer.kt:25)
- "RecentFilesModel frontend/backend synchronisation":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.platform.recentFiles.frontend.model.FrontendRecentFilesModel.subscribeToBackendRecentFilesUpdates(FrontendRecentFilesModel.kt:100)
at com.intellij.platform.recentFiles.frontend.model.RecentFileModelSynchronizer$execute$4.invokeSuspend(RecentFileModelSynchronizer.kt:29)
- "RecentFilesModel updates":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "Recent file events -> Recent files list synchronisation":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "Recent file events -> Recent files list synchronisation":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.platform.recentFiles.backend.BackendRecentFilesModel.subscribeToBackendRecentFilesUpdates(BackendRecentFilesModel.kt:26)
at com.intellij.platform.recentFiles.backend.BackendRecentFileModelSynchronizer$execute$2.invokeSuspend(BackendRecentFileModelSynchronizer.kt:21)
- "Recent file events -> Recent files list synchronisation":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.platform.recentFiles.backend.BackendRecentFilesModel.subscribeToBackendRecentFilesUpdates(BackendRecentFilesModel.kt:26)
at com.intellij.platform.recentFiles.backend.BackendRecentFileModelSynchronizer$execute$3.invokeSuspend(BackendRecentFileModelSynchronizer.kt:25)
- "Recent file events -> Recent files list synchronisation":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.platform.recentFiles.backend.BackendRecentFilesModel.subscribeToBackendRecentFilesUpdates(BackendRecentFilesModel.kt:26)
at com.intellij.platform.recentFiles.backend.BackendRecentFileModelSynchronizer$execute$4.invokeSuspend(BackendRecentFileModelSynchronizer.kt:29)
- "(ProjectImpl@1920826041 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.bookmarks.frontend.LineBookmarkListener":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.recentFiles.backend.BackendRecentFileEventsModel":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.spellchecker.grazie.GrazieSpellCheckerEngine":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.spellchecker.SpellCheckerManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x org.jetbrains.completion.full.line)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.llmInstaller.LLMInstallerServiceProjectScope":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.llmInstaller.LLMInstallerServiceProjectScope":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.llmInstaller.AiAutoInstallationManager$execute$3.invokeSuspend(AiAutoInstallationManager.kt:39)
- "com.intellij.util.indexing.diagnostic.DumbModeFromScanningTrackerService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.util.indexing.diagnostic.DumbModeFromScanningTrackerService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.util.indexing.diagnostic.DumbModeFromScanningTrackerService$1.invokeSuspend(DumbModeFromScanningTrackerService.kt:21)
- "com.intellij.openapi.projectRoots.impl.UnknownSdkEditorNotification":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.dvcs.repo.rhizome.RepositoryCountUpdater":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.externalSystem.settings.ProjectBuildClasspathManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.project.impl.BaseProjectDirectoriesImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.project.impl.BaseProjectDirectoriesImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.ide.project.impl.BaseProjectDirectoriesImpl$1.invokeSuspend(BaseProjectDirectoriesImpl.kt:39)
- "com.intellij.ide.ProjectWindowCustomizerIconCache":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.execution.impl.ExecutionManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.internal.statistic.service.fus.collectors.ProjectFUStateUsagesLogger":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.internal.statistic.service.fus.collectors.ProjectFUStateUsagesLogger":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.internal.statistic.service.fus.collectors.ProjectFUStateUsagesLogger.logProjectStateRegularly(FUStateUsagesLogger.kt:220)
at com.intellij.internal.statistic.service.fus.collectors.ProjectFUStateUsagesLogger$1.invokeSuspend(FUStateUsagesLogger.kt:209)
- "(ProjectImpl@1920826041 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.ide.newUsersOnboarding.NewUsersOnboardingService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.project.InitialVfsRefreshService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.project.InitialVfsRefreshService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.util.CoroutinesKt$awaitCancellationAndInvoke$1.invokeSuspend(coroutines.kt:35)
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.kotlin))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.core.script.k2.definitions.ScriptTemplatesFromDependenciesDefinitionSource":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.util.indexing.projectFilter.ProjectIndexableFilesFilterHealthCheck":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.execution.runToolbar.RunToolbarSlotManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x com.intellij.java)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.java.execution.impl.backend.JavaAutoRunTrackerService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x com.intellij.compose)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.compose.ide.plugin.resources.ComposeResourcesGenerationService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x org.intellij.plugins.markdown)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.wm.impl.LibraryDependentToolWindowManager":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "run activity":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.wm.impl.LibraryDependentToolWindowManager$execute$2.invokeSuspend(LibraryDependentToolWindowManager.kt:67)
at com.intellij.openapi.wm.impl.LibraryDependentToolWindowManager.execute(LibraryDependentToolWindowManager.kt:38)
at com.intellij.ide.startup.impl.StartupManagerImplKt$launchActivity$1.invokeSuspend(StartupManagerImpl.kt:511)
- "run activity":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "run activity":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.workspaceModel.ide.impl.VirtualFileUrlsLazyInitializer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.workspaceModel.ide.impl.WorkspaceModelCachesInvalidatorBackgroundActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.diagnostic.IdeHeartbeatEventReporter":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.featureStatistics.InternalFlagDetection":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.diagnostic.WindowsDefenderCheckerActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginsAdvertiserStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.projectRoots.impl.jdkDownloader.JdkUpdaterStartup":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.accessibility.AccessibilityUsageTrackerCollector$CollectStatisticsTask":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.plugins.LanguagePluginDetectionStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.notification.impl.RemindLaterActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.plugins.DependencyFeatureCollector":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.diagnostic.opentelemetry.JVMStatsToOTelReporter":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vfs.newvfs.monitoring.VFSInitializationConditionsToFusReporter":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.internal.DumpPluginDescriptorsOnProjectOpenTrigger":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.workspaceModel.ide.impl.jps.serialization.DelayedProjectSynchronizer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.facet.FacetTypeFeatureCollector":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.feedback.csat.CsatNewUserTracker":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.externalSystem.autolink.UnlinkedProjectStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.externalSystem.service.project.manage.ReprocessContentRootDataActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.registry.cloud.ConfigRefreshActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.execution.dashboard.RunDashboardCheckerActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.javaFX))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.javaFX.fxml.JavaFxDetectionStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.kotlin))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.gradle.statistics.KotlinGradleFUSLoggingActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x tanvd.grazi))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.grazie.ide.notification.GrazieNotificationComponent":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x intellij.jupyter))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.jupyter.git.nbstripout.JupyterGitStartup":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.kotlin))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.gradleCodeInsightCommon.native.KotlinNativeABICompatibilityChecker":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.TipOfTheDayStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.externalSystem.service.project.manage.SourceFolderManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserServiceImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x intellij.jupyter)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.jupyter.git.nbstripout.JupyterGitService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "JupyterGit":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.framework.detection.impl.FrameworkDetectionManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.framework.detection.impl.FrameworkDetectionManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.framework.detection.impl.FrameworkDetectorQueue$scheduleFlow$1.invokeSuspend(FrameworkDetectorQueue.kt:54)
- "com.intellij.framework.detection.impl.FrameworkDetectionManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.framework.detection.impl.FrameworkDetectionManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.openapi.projectRoots.impl.jdkDownloader.JdkUpdatesCollectorQueue":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.actionsOnSave.impl.ActionsOnSaveManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.configurationStore.ProjectWithModulesStoreReloadManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "configuration store reload request flow processing":StandaloneCoroutine{Active}, state: RUNNING [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at com.intellij.configurationStore.StoreReloadManagerImpl$1.invokeSuspend(StoreReloadManagerImpl.kt:51)
- "configuration store reload request flow processing":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.ide.util.scopeChooser.ScopeService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x5 of] "com.intellij.ide.util.scopeChooser.ScopeService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.usages.impl.UsageViewCoroutineScopeProvider":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.usages.impl.UsageViewCoroutineScopeProvider":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.actions.searcheverywhere.SearchEverywhereCoroutineScopeService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.actions.searcheverywhere.SearchEverywhereContributorCoroutineScopeHolder":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "SearchEverywhereContributorCoroutineScopeHolder":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.editor.impl.zombie.Necropolis":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x6 of] "com.intellij.openapi.editor.impl.zombie.Necropolis":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), Dispatchers.Default]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.util.CoroutinesKt$awaitCancellationAndInvoke$1.invokeSuspend(coroutines.kt:35)
- "com.intellij.application.options.codeStyle.cache.CodeStyleCachedValueProviderService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.ide.CoreUiCoroutineScopeHolder":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x5 of] "com.intellij.platform.ide.CoreUiCoroutineScopeHolder":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.editor.impl.EditorMarkupModelImpl$7.invokeSuspend(EditorMarkupModelImpl.kt:286)
- "com.intellij.platform.ide.CoreUiCoroutineScopeHolder":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.ide.CoreUiCoroutineScopeHolder":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.util.coroutines.flow.FlowKt$throttle$1.invokeSuspend(flow.kt:46)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.ide.CoreUiCoroutineScopeHolder":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), Dispatchers.Default]
at com.intellij.platform.util.coroutines.flow.FlowKt$throttle$1$latchJob$1.invokeSuspend(flow.kt:41)
- "com.intellij.platform.ide.CoreUiCoroutineScopeHolder":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
-[x2 of] "com.intellij.platform.ide.CoreUiCoroutineScopeHolder":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.editor.impl.EditorMarkupModelImpl$7.invokeSuspend(EditorMarkupModelImpl.kt:286)
- "com.intellij.platform.ide.CoreUiCoroutineScopeHolder":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.ide.CoreUiCoroutineScopeHolder":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.util.coroutines.flow.FlowKt$throttle$1.invokeSuspend(flow.kt:46)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.platform.ide.CoreUiCoroutineScopeHolder":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.platform.util.coroutines.flow.FlowKt$throttle$1$latchJob$1.invokeSuspend(flow.kt:41)
- "com.intellij.platform.ide.CoreUiCoroutineScopeHolder":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.codeInsight.preview.ImageOrColorPreviewService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "ImageOrColorPreviewService requests collector":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.codeInsight.preview.ImageOrColorPreviewService$1.invokeSuspend(ImageOrColorPreviewService.kt:58)
- "ImageOrColorPreviewService requests collector":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "ImageOrColorPreviewService requests collector":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.codeInsight.preview.ImageOrColorPreviewService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.util.CoroutinesKt$awaitCancellationAndInvoke$1.invokeSuspend(coroutines.kt:35)
-[x5 of] "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer.execute(FloatingCodeToolbarEditorCustomizer.kt:28)
at com.intellij.openapi.fileEditor.impl.text.TextEditorImpl$2$1.invokeSuspend(TextEditorImpl.kt:102)
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.actionSystem.impl.FloatingToolbar$1.invokeSuspend(FloatingToolbar.kt:72)
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), com.intellij.ui.codeFloatingToolbar.FloatingCodeToolbarEditorCustomizer, ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.intellij.plugins.markdown))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x5 of] "org.intellij.plugins.markdown.ui.floating.AddFloatingToolbarTextEditorCustomizer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij.notebooks.core))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x5 of] "com.intellij.notebooks.visualization.ui.NotebookFloatingToolbarCustomizer":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, uninitialized, ModalityState.ANY]
- "com.intellij.internal.statistic.collectors.fus.fileTypes.ProjectStateObserver":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.internal.statistic.collectors.fus.fileTypes.ProjectStateObserver":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.internal.statistic.collectors.fus.fileTypes.ProjectStateObserver$2.invokeSuspend(FileTypeUsageCounterCollector.kt:273)
- "com.intellij.platform.externalSystem.impl.ExternalSystemImplCoroutineScope$ProjectService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.xdebugger.impl.hotswap.HotSwapSessionManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x com.intellij.java)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.java.execution.impl.frontend.AutoRunFloatingToolbarService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x8 of] "com.intellij.java.execution.impl.frontend.AutoRunFloatingToolbarService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), ClientId(value=Host), Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.java.execution.impl.frontend.JavaAutoRunFloatingToolbarProvider$register$1.invokeSuspend(JavaAutoRunFloatingToolbarProvider.kt:56)
- "com.intellij.codeInsight.daemon.impl.ErrorStripeUpdateManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.multiverse.EditorContextManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.structureView.impl.StructureViewFactoryImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x com.intellij.java)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.jvm.dfa.analysis.ui.inspection.highlight.DfaHighlightedTraceService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.jvm.dfa.analysis.ui.inspection.highlight.DfaHighlightedTraceService":LazyStandaloneCoroutine{New}, state: CREATED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
- "com.intellij.jvm.dfa.analysis.ui.inspection.highlight.DfaHighlightedTraceService":LazyStandaloneCoroutine{New}, state: CREATED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.EDT]
- "com.intellij.usages.impl.UsageViewPopupManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x org.jetbrains.security.package-checker)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.packageChecker.model.impl.ProjectDependenciesModelImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.packageChecker.model.ProjectDependenciesModuleAggregator":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "com.intellij.packageChecker.model.ProjectDependenciesModuleAggregator":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.packageChecker.model.ProjectDependenciesModuleAggregator":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.packageChecker.model.ProjectDependenciesModuleAggregator":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "com.intellij.packageChecker.model.ProjectDependenciesModuleAggregator":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.packageChecker.model.ProjectDependenciesModuleAggregator":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at com.intellij.packageChecker.model.ProjectDependenciesModuleAggregator$special$$inlined$flatMapLatest$1.invokeSuspend(ProjectDependenciesModuleAggregator.kt:189)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
-[x2 of] "com.intellij.packageChecker.model.ProjectDependenciesModuleAggregator":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "com.intellij.packageChecker.model.impl.ProjectDependenciesModelImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:215)
- "com.intellij.packageChecker.model.impl.ProjectDependenciesModelImpl":StandaloneCoroutine{Active}, state: RUNNING [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__ErrorsKt.catchImpl(Errors.kt:152)
at kotlinx.coroutines.flow.FlowKt__ErrorsKt$catch$$inlined$unsafeFlow$1.collect(Errors.kt:109)
at com.intellij.packageChecker.model.impl.ProjectDependenciesModelImpl$allPackages$1.invokeSuspend(ProjectDependenciesModelImpl.kt:84)
at kotlinx.coroutines.flow.AbstractFlow.collect(Flow.kt:226)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "com.intellij.packageChecker.model.impl.ProjectDependenciesModelImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.packageChecker.model.impl.ProjectDependenciesModelImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.packageChecker.model.impl.ProjectDependenciesModelImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "com.intellij.packageChecker.model.impl.ProjectDependenciesModelImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.packageChecker.service.PackageCheckerDisposable":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x org.jetbrains.security.package-checker)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x training)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "training.featuresSuggester.FeatureSuggestersManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.lang.documentation.ide.impl.DocumentationManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.lang.documentation.ide.impl.DocumentationManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.lang.documentation.ide.impl.DocumentationToolWindowManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.hints.codeVision.CodeVisionHistogramReporter":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.find.actions.UsageNavigation":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.ide.CoreUiCoroutineScopeHolder":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.ide.CoreUiCoroutineScopeHolder":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.ide.CoreUiCoroutineScopeHolder":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at com.intellij.ui.BalloonLayoutImpl$1.invokeSuspend(BalloonLayoutImpl.kt:76)
- "com.intellij.platform.ide.CoreUiCoroutineScopeHolder":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.platform.ide.CoreUiCoroutineScopeHolder":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.idea.SystemHealthMonitor$monitorDiskSpace$1.invokeSuspend(SystemHealthMonitor.kt:439)
- "com.intellij.util.SingleAlarmSharedCoroutineScopeHolder":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij.settingsSync)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.settingsSync.jba.JbaCommunicatorProvider":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.workspaceModel.ide.impl.GlobalWorkspaceModelCacheImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.workspaceModel.ide.impl.GlobalWorkspaceModelCacheImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at com.intellij.workspaceModel.ide.impl.GlobalWorkspaceModelCacheImpl$1.invokeSuspend(GlobalWorkspaceModelCacheImpl.kt:56)
- "com.intellij.workspaceModel.ide.impl.GlobalWorkspaceModelCacheImpl":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.workspaceModel.ide.impl.jps.serialization.JpsGlobalModelSynchronizerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.jetbrains.kotlin)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.kotlin))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.gradle.scripting.k2.ProjectGradleSettingsListener":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.diagnostic.ThreadDumpService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.UpdatesInfoProviderManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.util.concurrency.EdtScheduler":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.wm.impl.status.widget.StatusBarActionManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.ide.ToolboxSettingsActionRegistry":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.ide.ToolboxSettingsActionRegistry":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at org.jetbrains.ide.ToolboxSettingsActionRegistry$1.invokeSuspend(ToolboxUpdateActions.kt:35)
- "org.jetbrains.ide.ToolboxSettingsActionRegistry":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "org.jetbrains.ide.ToolboxSettingsActionRegistry":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.util.AlarmSharedCoroutineScopeHolder":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.completion.ml.common.CurrentProjectInfo$$Lambda/0x000001bf5e103738@73c599f3 (Alarm)":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default.limitedParallelism(1)]
at com.intellij.util.Alarm$Request$schedule$1.invokeSuspend(Alarm.kt:384)
- "com.intellij.psi.impl.DocumentCommitThread":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "Document Commit Pool":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default.limitedParallelism(1)]
- "com.intellij.openapi.vfs.newvfs.RefreshQueueImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "RefreshQueue Pool":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO.limitedParallelism(1)]
- "Async Refresh Event Processing":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO.limitedParallelism(1)]
- "com.intellij.openapi.progress.impl.BridgeTaskSupport":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInspection.ex.InspectionToolRegistrar":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.vfs.encoding.EncodingManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "EncodingManagerImpl Document Pool":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.IO.limitedParallelism(3)]
- "(ApplicationImpl@1262469835 x com.intellij.mcpServer)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.mcpserver.statistics.McpServerCounterUsagesCollector$McpToolNameValidator$ScopeHolder":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij.mcpServer))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.mcpserver.impl.McpServerService$MyProjectListener":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.mcpserver.impl.McpClientDetectionActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.mcpserver.impl.McpServerService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.psi.codeStyle.LanguageCodeStyleSettingsProviderService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.util.concurrency.InvokerService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "Invoker.0.Thread.ReadAction=YES: com.intellij.ide.projectView.impl.ProjectViewPane@76ba02df":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "Invoker.1.EDT: com.intellij.ui.tree.AsyncTreeModel@11c6254b":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "Invoker.2.Thread.ReadAction=YES: Project(name=HMCL3, containerState=COMPONENT_CREATED, componentStore=D:\PYL\Projects\HMCL)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "Invoker.3.Thread.ReadAction=NO: com.intellij.platform.execution.serviceView.ServiceModel@65955679":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ui.IconDeferrerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ui.IconDeferrerImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.ui.IconDeferrerImpl$scheduleCacheClearingTask$1.invokeSuspend(IconDeferrerImpl.kt:97)
- "(ApplicationImpl@1262469835 x Statistic)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x Statistic))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jpower8.idea.plugin.statictic.api.StatisticStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.wm.impl.ToolWindowManagerImpl$ToolWindowManagerAppLevelHelper":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.wm.impl.ToolWindowManagerImpl$ToolWindowManagerAppLevelHelper":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.wm.impl.ToolWindowManagerImpl$ToolWindowManagerAppLevelHelper$1.invokeSuspend(ToolWindowManagerImpl.kt:324)
- "com.intellij.openapi.wm.impl.ToolWindowManagerImpl$ToolWindowManagerAppLevelHelper":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.openapi.wm.impl.ToolWindowManagerImpl$ToolWindowManagerAppLevelHelper":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.internal.statistic.eventLog.EventLogListenersManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ui.IconCalculatingService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.javaee.ExternalResourceManagerExImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.passwordSafe.impl.PasswordSafeImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.OsDataLogger":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.jetbrains.completion.full.line)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.completion.full.line))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ml.inline.completion.impl.MLCompletionProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.jetbrains.completion.full.line)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.completion.full.line))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.completion.full.line.impl.actions.FullLineStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.completion.full.line.impl.platform.logs.SendingLogsRequestActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.execution.impl.frontend.FrontendRunInitializationProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.recentFiles.frontend.model.RecentFileModelSynchronizer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.bookmarks.frontend.LineBookmarkActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.debugger.impl.frontend.evaluate.quick.common.ValueLookupManagerProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.debugger.impl.frontend.FrontendXDebuggerInitializationProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.editor.frontend.FrontendEditorHandler":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.tasks.impl.TaskManagerStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.recentFiles.backend.BackendRecentFileModelSynchronizer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.ide.newUiOnboarding.newUi.NewUiOnboardingStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij.java)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij.java))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.java.execution.impl.backend.JavaAutoRunTrackerActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.jetbrains.performancePlugin)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.jetbrains.performancePlugin))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.performancePlugin.PerformanceTestTotalTimeTimer":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.jetbrains.performancePlugin.ProjectIndexingComponent":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij.compose)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij.compose))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.compose.ide.plugin.resources.ComposeResourcesGenerationService$ComposeResourcesWatcherActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "run activity":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.ide.startup.impl.StartupManagerImplKt$launchActivity$1.invokeSuspend(StartupManagerImpl.kt:511)
- "run activity":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "run activity":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor, run activity, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.platform.util.coroutines.flow.FlowKt$debounceBatch$1.invokeSuspend(flow.kt:147)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "(ApplicationImpl@1262469835 x org.intellij.qodana)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.intellij.qodana))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.qodana.jvm.java.QodanaJdkProjectActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.qodana.jvm.java.SdkRootsFixActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.jetbrains.plugins.gradle)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.plugins.gradle))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.plugins.gradle.integrations.maven.GradleProjectStartupActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.ide.diagnostic.startUpPerformanceReporter.IdeStartUpPerformanceService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.highlighting.BackgroundHighlighter":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "ApplicationImpl@1262469835 container":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.util.gist.GistManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.dvcs.repo.rhizome.RepositoryCountUpdater":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.externalProcessAuthHelper.NativeSshAuthService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.jetbrains.kotlin)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.kotlin))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.core.script.k2.definitions.ScriptTemplatesFromDependenciesDefinitionSource":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.diagnostic.IdeHeartbeatEventReporterService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.diagnostic.IdeHeartbeatEventReporterService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.diagnostic.IdeHeartbeatEventReporterService.heartBeatRoutine(IdeHeartbeatEventReporter.kt:140)
at com.intellij.diagnostic.IdeHeartbeatEventReporterService$1.invokeSuspend(IdeHeartbeatEventReporter.kt:69)
- "com.intellij.diagnostic.opentelemetry.JVMStatsToOTelReporter$ReportingService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.registry.cloud.ConfigRefreshActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.registry.cloud.ConfigRefreshService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.registry.cloud.ConfigRefreshService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.platform.registry.cloud.ConfigRefreshService.execute(ConfigRefreshActivity.kt:110)
at com.intellij.platform.registry.cloud.ConfigRefreshService$1.invokeSuspend(ConfigRefreshActivity.kt:91)
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x com.intellij))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.execution.dashboard.RunDashboardCheckerActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.jetbrains.kotlin)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.kotlin))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.gradle.statistics.KotlinGradleFUSLoggingActivity":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x intellij.jupyter)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x intellij.jupyter))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.jupyter.git.nbstripout.JupyterGitStartup":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.jetbrains.kotlin)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ProjectImpl@1920826041 x (ApplicationImpl@1262469835 x org.jetbrains.kotlin))":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "org.jetbrains.kotlin.idea.gradleCodeInsightCommon.native.KotlinNativeABICompatibilityChecker":ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ProjectImpl@1920826041), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "ApplicationImpl@1262469835 container":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at com.intellij.configurationStore.statistic.eventLog.FeatureUsageSettingsEventScheduler$initialize$1.invokeSuspend(FeatureUsageSettingsEventScheduler.kt:32)
- "com.intellij.openapi.projectRoots.impl.jdkDownloader.JdkUpdaterNotifications":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.projectRoots.impl.jdkDownloader.JdkUpdaterNotifications":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.projectRoots.impl.jdkDownloader.JdkUpdaterNotifications$1.invokeSuspend(JdkUpdaterActions.kt:42)
- "com.intellij.openapi.projectRoots.impl.jdkDownloader.JdkUpdaterNotifications":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.openapi.projectRoots.impl.jdkDownloader.JdkUpdaterNotifications":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.ide.IdeTooltipManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.IdeTooltipManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.ide.IdeTooltipManager$3.invokeSuspend(IdeTooltipManager.kt:147)
- "com.intellij.ide.IdeTooltipManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.ide.IdeTooltipManager":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.ide.IdeTooltipManager$4.invokeSuspend(IdeTooltipManager.kt:160)
- "com.intellij.ide.IdeTooltipManager":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "(ApplicationImpl@1262469835 x com.intellij)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.recentFiles.shared.RecentFilesApplicationCoroutineScopeProvider":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.platform.recentFiles.shared.RecentFilesApplicationCoroutineScopeProvider":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at com.intellij.platform.recentFiles.frontend.RecentFilesEditorTypingListener$1.invokeSuspend(RecentFilesEditorTypingListener.kt:30)
- "com.intellij.platform.recentFiles.shared.RecentFilesApplicationCoroutineScopeProvider":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.ide.AppIdleMemoryCleaner":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.AppIdleMemoryCleaner":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "com.intellij.ide.AppIdleMemoryCleaner":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__TransformKt$runningFold$$inlined$unsafeFlow$1.collect(Transform.kt:111)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.ide.AppIdleMemoryCleaner":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at fleet.kernel.rete.ReteKt$tokenSetsFlow$1$1.invokeSuspend(Rete.kt:541)
at kotlinx.coroutines.flow.AbstractFlow.collect(Flow.kt:226)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.ide.AppIdleMemoryCleaner":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.FlowKt__CollectKt$launchIn$1.invokeSuspend(Collect.kt:46)
- "(ApplicationImpl@1262469835 x com.intellij.searcheverywhere.ml)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.searchEverywhereMl.ranking.core.features.statistician.SearchEverywhereStatisticianService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.editor.impl.ad.markup.AdDocumentMarkupManagerImpl":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.editor.impl.EditorCaretRepaintService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.openapi.editor.impl.EditorCaretRepaintService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, ModalityState.ANY, Dispatchers.UI]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.editor.impl.EditorCaretRepaintService$1.invokeSuspend(EditorCaretRepaintService.kt:55)
- "com.intellij.openapi.editor.impl.EditorCaretRepaintService":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, ModalityState.ANY, Dispatchers.UI]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.openapi.editor.impl.EditorCaretRepaintService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, ModalityState.ANY, Dispatchers.UI]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "com.intellij.openapi.editor.impl.EditorCaretRepaintService":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, ModalityState.ANY, Dispatchers.UI]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "com.intellij.openapi.editor.impl.ad.AdTheManager":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.inline.completion.listeners.InlineCompletionEditorListener":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
-[x5 of] "com.intellij.codeInsight.inline.completion.listeners.InlineCompletionEditorListener":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "Inline Edit Request Executor":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "Inline Edit Request Executor":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), ClientId(value=Host), Dispatchers.Default]
at com.intellij.codeInsight.inline.edit.InlineEditRequestExecutorImpl$1.invokeSuspend(InlineEditRequestExecutor.kt:62)
- "(ApplicationImpl@1262469835 x com.intellij.plugin.adernov.powershell)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.codeInsight.hints.parameters.ParameterHintsExcludeListService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x org.jetbrains.security.package-checker)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "(ApplicationImpl@1262469835 x com.intellij.turboComplete)":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "com.intellij.ide.ui.laf.MnemonicListenerService":supervisor:ChildScope{Active} [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor]
- "LaF Mnemonic Support":StandaloneCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.ide.ui.laf.MnemonicListenerService$1.invokeSuspend(LaFMnemonicDispatcher.kt:57)
- "LaF Mnemonic Support":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "LaF Mnemonic Support":ProducerCoroutine{Active}, state: SUSPENDED [Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), ComponentManager(ApplicationImpl@1262469835), com.intellij.codeWithMe.ClientIdContextElementPrecursor, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher$1.invokeSuspend(IdeKeyEventDispatcher.kt:123)
- ProducerCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at com.intellij.util.indexing.diagnostic.StorageDiagnosticData$setupIndexingReporting$2.invokeSuspend(StorageDiagnosticData.kt:327)
- StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at com.intellij.diagnostic.fus.FusReportingEventWatcher$samplingCoroutine$1.invokeSuspend(FusReportingEventWatcher.kt:45)
- SupervisorJobImpl{Active}
-[x2 of] "IDE Project Frame":supervisor:ChildScope{Active} [Dispatchers.Default]
-[x2 of] "IDE Project Frame":supervisor:ChildScope{Active} [Dispatchers.Default]
- "IdeMenuBarHelper":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.platform.ide.menu.IdeMenuBarHelper$3.invokeSuspend(IdeMenuBarHelper.kt:106)
- "IdeMenuBarHelper":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.ide.menu.IdeMenuBarHelper$4$1.invokeSuspend(IdeMenuBarHelper.kt:115)
at com.intellij.platform.ide.menu.IdeMenuBarHelper$4.invokeSuspend(IdeMenuBarHelper.kt:114)
- "IdeMenuBarHelper":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.ui(RELAX)]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "IdeMenuBarHelper":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.ui(RELAX)]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.util.coroutines.flow.FlowKt$throttle$1.invokeSuspend(flow.kt:46)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "IdeMenuBarHelper":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.ui(RELAX)]
at com.intellij.platform.util.coroutines.flow.FlowKt$throttle$1$latchJob$1.invokeSuspend(flow.kt:41)
- "IdeMenuBarHelper":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.ui(RELAX)]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "IDE Project Frame":supervisor:ChildScope{Active} [Dispatchers.Default]
- "IDE Project Frame":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.EDT]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.openapi.wm.impl.customFrameDecorations.header.toolbar.MainMenuButton$2.invokeSuspend(MainMenuButton.kt:89)
- "IdeMenuBarHelper":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.platform.ide.menu.IdeMenuBarHelper$3.invokeSuspend(IdeMenuBarHelper.kt:106)
- "IdeMenuBarHelper":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.ide.menu.IdeMenuBarHelper$4$1.invokeSuspend(IdeMenuBarHelper.kt:115)
at com.intellij.platform.ide.menu.IdeMenuBarHelper$4.invokeSuspend(IdeMenuBarHelper.kt:114)
- "IdeMenuBarHelper":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.ui(RELAX)]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "IdeMenuBarHelper":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.ui(RELAX)]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.util.coroutines.flow.FlowKt$throttle$1.invokeSuspend(flow.kt:46)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "IdeMenuBarHelper":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.ui(RELAX)]
at com.intellij.platform.util.coroutines.flow.FlowKt$throttle$1$latchJob$1.invokeSuspend(flow.kt:41)
- "IdeMenuBarHelper":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.ui(RELAX)]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "ExpandableMenu":supervisor:ChildScope{Active} [Dispatchers.Default]
- "IdeMenuBarHelper":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.platform.ide.menu.IdeMenuBarHelper$3.invokeSuspend(IdeMenuBarHelper.kt:106)
- "IdeMenuBarHelper":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.ide.menu.IdeMenuBarHelper$4$1.invokeSuspend(IdeMenuBarHelper.kt:115)
at com.intellij.platform.ide.menu.IdeMenuBarHelper$4.invokeSuspend(IdeMenuBarHelper.kt:114)
- "IdeMenuBarHelper":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.ui(RELAX)]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "IdeMenuBarHelper":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.ui(RELAX)]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.util.coroutines.flow.FlowKt$throttle$1.invokeSuspend(flow.kt:46)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "IdeMenuBarHelper":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.ui(RELAX)]
at com.intellij.platform.util.coroutines.flow.FlowKt$throttle$1$latchJob$1.invokeSuspend(flow.kt:41)
- "IdeMenuBarHelper":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.ui(RELAX)]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "IDE Project Frame":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.openapi.wm.impl.customFrameDecorations.header.toolbar.ToolbarFrameHeader$7.invokeSuspend(ToolbarFrameHeader.kt:134)
- "MainToolbar":supervisor:ChildScope{Active} [Dispatchers.Default]
- "MainToolbar visibility updates":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.wm.impl.ProjectFrameCustomHeaderHelper$5.invokeSuspend(ProjectFrameCustomHeaderHelper.kt:121)
- "MainToolbar visibility updates":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "IdeStatusBarImpl":ChildScope{Active} [Dispatchers.Default]
- "IdeStatusBarImpl":supervisor:ChildScope{Active} [Dispatchers.Default]
- "IdeStatusBarImpl":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.wm.impl.status.InfoAndProgressPanel$3.invokeSuspend(InfoAndProgressPanel.kt:151)
- "IdeStatusBarImpl":ProducerCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "IdeStatusBarImpl":ProducerCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "IdeStatusBarImpl":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.wm.impl.status.InfoAndProgressPanel$4.invokeSuspend(InfoAndProgressPanel.kt:158)
- "IdeStatusBarImpl":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.util.coroutines.flow.FlowKt$throttle$1.invokeSuspend(flow.kt:46)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "IdeStatusBarImpl":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.Default]
at com.intellij.platform.util.coroutines.flow.FlowKt$throttle$1$latchJob$1.invokeSuspend(flow.kt:41)
- "IdeStatusBarImpl":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "IdeStatusBarImpl":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.Default]
at com.intellij.openapi.fileEditor.impl.MergingUpdateChannel.start(MergingUpdateChannel.kt:28)
at com.intellij.openapi.wm.impl.status.InfoAndProgressPanel$5.invokeSuspend(InfoAndProgressPanel.kt:172)
- "IDE Project Frame":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.openapi.wm.impl.IdeProjectFrameHelper$installNorthComponents$2.invokeSuspend(IdeProjectFrameHelper.kt:67)
- "IDE Project Frame":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "IDE Project Frame":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.Default]
at kotlinx.coroutines.channels.ProduceKt.awaitClose(Produce.kt:302)
at com.intellij.platform.navbar.frontend.NavBarRootPaneExtension$component$1.invokeSuspend(NavBarRootPaneExtension.kt:76)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
-[x2 of] "ProjectWidgetGradientLocationService.repaintWhenChanged":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Unconfined]
at com.intellij.util.ui.UiScopeKt$launchOnShow$1$1$1.invokeSuspend(uiScope.kt:143)
at com.intellij.util.ui.UiScopeKt$launchOnShow$1$1.invokeSuspend(uiScope.kt:140)
at com.intellij.util.ui.UiScopeKt.showingAsChannel(uiScope.kt:183)
at com.intellij.util.ui.UiScopeKt$launchOnShow$1.invokeSuspend(uiScope.kt:139)
- "ProjectWidgetGradientLocationService.repaintWhenChanged":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Dispatchers.UI]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.ide.ProjectWindowCustomizerServiceKt$repaintWhenProjectGradientOffsetChanged$1.invokeSuspend(ProjectWindowCustomizerService.kt:449)
at com.intellij.util.ui.UiScopeKt$launchUiCoroutine$1$1.invokeSuspend(uiScope.kt:324)
at com.intellij.platform.kernel.ApiKt$withKernel$2.invokeSuspend(api.kt:24)
at com.intellij.platform.kernel.ApiKt.withKernel(api.kt:22)
at com.intellij.util.ui.UiScopeKt$launchUiCoroutine$1.invokeSuspend(uiScope.kt:323)
- "Main toolbar update":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.ANY, Dispatchers.ui(RELAX).immediate]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.util.ui.ShowingScopeKt$showingScope$3.invokeSuspend(showingScope.kt:113)
- "static nav bar vm":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Unconfined]
at com.intellij.util.ui.UiScopeKt$launchOnShow$1$1$1.invokeSuspend(uiScope.kt:143)
at com.intellij.util.ui.UiScopeKt$launchOnShow$1$1.invokeSuspend(uiScope.kt:140)
at com.intellij.util.ui.UiScopeKt.showingAsChannel(uiScope.kt:183)
at com.intellij.util.ui.UiScopeKt$launchOnShow$1.invokeSuspend(uiScope.kt:139)
- "static nav bar vm":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Dispatchers.UI]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.navbar.frontend.ui.StaticNavBarPanel$1.invokeSuspend(StaticNavBarPanel.kt:68)
at com.intellij.util.ui.UiScopeKt$launchUiCoroutine$1$1.invokeSuspend(uiScope.kt:324)
at com.intellij.platform.kernel.ApiKt$withKernel$2.invokeSuspend(api.kt:24)
at com.intellij.platform.kernel.ApiKt.withKernel(api.kt:22)
at com.intellij.util.ui.UiScopeKt$launchUiCoroutine$1.invokeSuspend(uiScope.kt:323)
- "static nav bar vm":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.UI]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "static nav bar vm":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.UI]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.platform.navbar.frontend.ui.StaticNavBarPanel$handleVm$2.invokeSuspend(StaticNavBarPanel.kt:80)
at com.intellij.platform.navbar.frontend.ui.StaticNavBarPanel.handleVm(StaticNavBarPanel.kt:76)
at com.intellij.platform.navbar.frontend.ui.StaticNavBarPanel$1$1.invokeSuspend(StaticNavBarPanel.kt:70)
at kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invokeSuspend(Merge.kt:213)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
- "static nav bar vm":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.UI]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.navbar.frontend.ui.NewNavBarPanel$2.invokeSuspend(NewNavBarPanel.kt:83)
- "static nav bar vm":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.UI]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "static nav bar vm":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.UI]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.navbar.frontend.ui.NewNavBarPanel$handleItems$2$1.invokeSuspend(NewNavBarPanel.kt:94)
at com.intellij.platform.navbar.frontend.ui.NewNavBarPanel$handleItems$2.invokeSuspend(NewNavBarPanel.kt:90)
at kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invokeSuspend(Merge.kt:213)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
-[x12 of] "static nav bar vm":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.EDT]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.platform.navbar.frontend.ui.NavBarItemComponent$1.invokeSuspend(NavBarItemComponent.kt:77)
- "static nav bar vm":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.UI]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "static nav bar window":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Unconfined]
at com.intellij.util.ui.UiScopeKt$launchOnShow$1$1$1.invokeSuspend(uiScope.kt:143)
at com.intellij.util.ui.UiScopeKt$launchOnShow$1$1.invokeSuspend(uiScope.kt:140)
at com.intellij.util.ui.UiScopeKt.showingAsChannel(uiScope.kt:183)
at com.intellij.util.ui.UiScopeKt$launchOnShow$1.invokeSuspend(uiScope.kt:139)
- "static nav bar window":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Dispatchers.UI]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.platform.navbar.frontend.ui.StaticNavBarPanelKt$staticNavBarPanel$handleWindow$2.invokeSuspend(StaticNavBarPanel.kt:39)
at com.intellij.platform.navbar.frontend.ui.StaticNavBarPanelKt.staticNavBarPanel$handleWindow(StaticNavBarPanel.kt:30)
at com.intellij.platform.navbar.frontend.ui.StaticNavBarPanelKt$staticNavBarPanel$1$1.invokeSuspend(StaticNavBarPanel.kt:50)
at com.intellij.platform.navbar.frontend.ui.StaticNavBarPanelKt$staticNavBarPanel$1.invokeSuspend(StaticNavBarPanel.kt:49)
at com.intellij.util.ui.UiScopeKt$launchUiCoroutine$1$1.invokeSuspend(uiScope.kt:324)
at com.intellij.platform.kernel.ApiKt$withKernel$2.invokeSuspend(api.kt:24)
at com.intellij.platform.kernel.ApiKt.withKernel(api.kt:22)
at com.intellij.util.ui.UiScopeKt$launchUiCoroutine$1.invokeSuspend(uiScope.kt:323)
- "static nav bar window":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.navbar.frontend.vm.impl.NavBarVmImpl$1.invokeSuspend(NavBarVmImpl.kt:41)
- "static nav bar window":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "static nav bar window":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "static nav bar window":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.navbar.frontend.vm.impl.NavBarVmImpl$2.invokeSuspend(NavBarVmImpl.kt:51)
- "static nav bar window":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "static nav bar window":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.platform.util.coroutines.flow.FlowKt$zipWithNext$1.invokeSuspend(flow.kt:107)
at kotlinx.coroutines.flow.AbstractFlow.collect(Flow.kt:226)
at com.intellij.platform.navbar.frontend.vm.impl.NavBarVmImpl$handleSelectionChange$2.invokeSuspend(NavBarVmImpl.kt:126)
at kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invokeSuspend(Merge.kt:213)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
- "static nav bar window":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.platform.navbar.frontend.vm.impl.NavBarVmImpl$3.invokeSuspend(NavBarVmImpl.kt:54)
- "static nav bar window":ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "static nav bar window":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Kernel@7p01nkisqgm2b84lunq9, Rete(abortOnError=false, commands=capacity=2147483647,data=[onReceive], reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c, dbSource=ReteDbSource(reteState=kotlinx.coroutines.flow.StateFlowImpl@402a079c)), DbSourceContextElement(kernel Kernel@7p01nkisqgm2b84lunq9), kotlinx.coroutines.UndispatchedMarker, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.FlowKt__CollectKt$launchIn$1.invokeSuspend(Collect.kt:46)
-[x3 of] SupervisorJobImpl{Active}
-[x2 of] StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.ui.components.TwoWayAnimator$start$1.invokeSuspend(TwoWayAnimator.kt:62)
- ProducerCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "ProjectWidget":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Unconfined]
at com.intellij.util.ui.UiScopeKt$launchOnShow$1$1$1.invokeSuspend(uiScope.kt:143)
at com.intellij.util.ui.UiScopeKt$launchOnShow$1$1.invokeSuspend(uiScope.kt:140)
at com.intellij.util.ui.UiScopeKt.showingAsChannel(uiScope.kt:183)
at com.intellij.util.ui.UiScopeKt$launchOnShow$1.invokeSuspend(uiScope.kt:139)
- "ProjectWidget":StandaloneCoroutine{Active}, state: SUSPENDED [ModalityState.NON_MODAL, Dispatchers.UI]
at kotlinx.coroutines.DelayKt.awaitCancellation(Delay.kt:160)
at com.intellij.openapi.wm.impl.headertoolbar.ProjectToolbarWidgetAction$createCustomComponent$1$1.invokeSuspend(ProjectToolbarWidgetAction.kt:95)
at com.intellij.util.ui.UiScopeKt$launchUiCoroutine$1$1.invokeSuspend(uiScope.kt:324)
at com.intellij.platform.kernel.ApiKt$withKernel$2.invokeSuspend(api.kt:24)
at com.intellij.platform.kernel.ApiKt.withKernel(api.kt:22)
at com.intellij.util.ui.UiScopeKt$launchUiCoroutine$1.invokeSuspend(uiScope.kt:323)
- "Vcs Log Heavy Process and Power Save Mode Tracker":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at com.intellij.vcs.log.impl.HeavyAwareListener$start$job$1.invokeSuspend(HeavyAwareListener.kt:41)
- "Vcs Log Heavy Process and Power Save Mode Tracker":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "Vcs Log Heavy Process and Power Save Mode Tracker":ProducerCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.ProduceKt.awaitClose(Produce.kt:302)
at com.intellij.vcs.log.impl.HeavyAwareListenerKt$powerSaveModeFlow$1.invokeSuspend(HeavyAwareListener.kt:62)
at kotlinx.coroutines.flow.CallbackFlowBuilder.collectTo(Builders.kt:330)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "Vcs Log Heavy Process and Power Save Mode Tracker":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "Vcs Log Heavy Process and Power Save Mode Tracker":ProducerCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "Vcs Log Heavy Process and Power Save Mode Tracker":ProducerCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.ProduceKt.awaitClose(Produce.kt:302)
at com.intellij.vcs.log.impl.HeavyAwareListenerKt$heavyProcessFlow$1.invokeSuspend(HeavyAwareListener.kt:83)
at kotlinx.coroutines.flow.CallbackFlowBuilder.collectTo(Builders.kt:330)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- SupervisorJobImpl{Active}
- StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.IO]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.vcs.log.data.index.IndexDiagnosticRunner$1.invokeSuspend(IndexDiagnosticRunner.kt:73)
- ProducerCoroutine{Active}, state: SUSPENDED [Dispatchers.IO]
at kotlinx.coroutines.channels.ProduceKt.awaitClose(Produce.kt:302)
at com.intellij.vcs.log.data.index.IndexDiagnosticRunner$rootsFlow$1.invokeSuspend(IndexDiagnosticRunner.kt:62)
at kotlinx.coroutines.flow.CallbackFlowBuilder.collectTo(Builders.kt:330)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- SupervisorJobImpl{Active}
- "PackageChecker.VulnerableApiService.HMCL3.HMCL.main":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:215)
- "PackageChecker.VulnerableApiService.HMCL3.HMCL.main":ProducerCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "PackageChecker.VulnerableApiService.HMCL3.HMCL.main":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.FlowKt__ErrorsKt.catchImpl(Errors.kt:152)
at kotlinx.coroutines.flow.FlowKt__ErrorsKt$retryWhen$$inlined$unsafeFlow$1.collect(Errors.kt:113)
at kotlinx.coroutines.flow.FlowKt__ErrorsKt.catchImpl(Errors.kt:152)
at kotlinx.coroutines.flow.FlowKt__ErrorsKt$catch$$inlined$unsafeFlow$1.collect(Errors.kt:109)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "PackageChecker.VulnerableApiService.HMCL3.HMCL.main":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "PackageChecker.VulnerableApiService.HMCL3.HMCL.main":StandaloneCoroutine{Active}, state: RUNNING [Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.packageChecker.service.VulnerableApiService$createLibrariesFqnVulnerabilitiesFlow$vulnerabilitiesUpdatedFlow$1.invokeSuspend(VulnerableApiService.kt:112)
at kotlinx.coroutines.flow.AbstractFlow.collect(Flow.kt:226)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- SupervisorJobImpl{Active}
- "VulnerabilitiesPackageChecker":ProducerCoroutine{Active}, state: SUSPENDED [Dispatchers.Unconfined]
at kotlinx.coroutines.channels.TickerChannelsKt.fixedPeriodTicker(TickerChannels.kt:92)
at kotlinx.coroutines.channels.TickerChannelsKt$ticker$3.invokeSuspend(TickerChannels.kt:68)
- "VulnerabilitiesPackageChecker":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.packageChecker.service.PackageChecker$createCheckedPackagesFlow$1.invokeSuspend(PackageChecker.kt:128)
- "VulnerabilitiesPackageChecker":ProducerCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "VulnerabilitiesPackageChecker":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at com.intellij.packageChecker.service.PackageChecker.updateCacheOnTrigger(PackageChecker.kt:105)
at com.intellij.packageChecker.service.PackageChecker$createCheckedPackagesFlow$1$1.invokeSuspend(PackageChecker.kt:130)
at kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invokeSuspend(Merge.kt:213)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(Merge.kt:30)
- "VulnerabilitiesPackageChecker":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.packageChecker.service.PackageChecker$1.invokeSuspend(PackageChecker.kt:72)
- "VulnerabilitiesPackageChecker":ProducerCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.FlowKt__TransformKt$runningFold$$inlined$unsafeFlow$1.collect(Transform.kt:111)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- SupervisorJobImpl{Active}
- "com.intellij.packageChecker.java.IntellijModuleProjectDependenciesModel":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- SupervisorJobImpl{Active}
- "com.intellij.packageChecker.java.IntellijProjectDependenciesModel":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at com.intellij.packageChecker.java.IntellijProjectDependenciesModel$1.invokeSuspend(IntellijProjectDependenciesModel.kt:37)
- "com.intellij.packageChecker.java.IntellijProjectDependenciesModel":ProducerCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
- "com.intellij.packageChecker.java.IntellijProjectDependenciesModel":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- SupervisorJobImpl{Active}
- "com.intellij.packageChecker.java.BuildSystemDependenciesModelBase":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- SupervisorJobImpl{Active}
- "com.intellij.packageChecker.java.BuildSystemDependenciesModelBase":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "com.intellij.packageChecker.java.BuildSystemDependenciesModelBase":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at com.intellij.packageChecker.gradle.GradleProjectDependenciesModel$1.invokeSuspend(GradleProjectDependenciesModel.kt:85)
- "com.intellij.packageChecker.java.BuildSystemDependenciesModelBase":ProducerCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.selects.SelectImplementation.doSelectSuspend(Select.kt:455)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1.invokeSuspend(Delay.kt:414)
at kotlinx.coroutines.flow.internal.FlowCoroutineKt$scopedFlow$1$1.invokeSuspend(FlowCoroutine.kt:47)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "com.intellij.packageChecker.java.BuildSystemDependenciesModelBase":ProducerCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.FlowKt__DelayKt$debounceInternal$1$values$1.invokeSuspend(Delay.kt:204)
-[x18 of] "ActionToolbarImpl.updateActionsOnAdd":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Unconfined]
at com.intellij.util.ui.UiScopeKt$launchOnceOnShow$1$1.invokeSuspend(uiScope.kt:69)
at com.intellij.util.ui.UiScopeKt.showingAsChannel(uiScope.kt:183)
at com.intellij.util.ui.UiScopeKt$launchOnceOnShow$1.invokeSuspend(uiScope.kt:67)
- SupervisorJobImpl{Active}
- "PackageChecker.VulnerableApiService.HMCL3.HMCLCore.main":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:47)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlow$collect$2.invokeSuspend(ChannelFlow.kt:119)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:215)
- "PackageChecker.VulnerableApiService.HMCL3.HMCLCore.main":ProducerCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.emitAllInternal$kotlinx_coroutines_core(BufferedChannel.kt:1580)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllInternal(Channels.kt:44)
at kotlinx.coroutines.flow.FlowKt__ChannelsKt.emitAllImpl$FlowKt__ChannelsKt(Channels.kt:32)
at kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3.invokeSuspend(Merge.kt:23)
at kotlinx.coroutines.flow.internal.ChannelFlow$collectToFun$1.invokeSuspend(ChannelFlow.kt:56)
- "PackageChecker.VulnerableApiService.HMCL3.HMCLCore.main":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.channels.BufferedChannel.receiveCatchingOnNoWaiterSuspend-GKJJFZk(BufferedChannel.kt:3137)
at kotlinx.coroutines.channels.BufferedChannel.receiveCatching-JP2dKIU$suspendImpl(BufferedChannel.kt:761)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2.invokeSuspend(Combine.kt:51)
at kotlinx.coroutines.flow.FlowKt__ErrorsKt.catchImpl(Errors.kt:152)
at kotlinx.coroutines.flow.FlowKt__ErrorsKt$retryWhen$$inlined$unsafeFlow$1.collect(Errors.kt:113)
at kotlinx.coroutines.flow.FlowKt__ErrorsKt.catchImpl(Errors.kt:152)
at kotlinx.coroutines.flow.FlowKt__ErrorsKt$catch$$inlined$unsafeFlow$1.collect(Errors.kt:109)
at kotlinx.coroutines.flow.FlowKt__ShareKt$launchSharing$1.invokeSuspend(Share.kt:210)
- "PackageChecker.VulnerableApiService.HMCL3.HMCLCore.main":StandaloneCoroutine{Active}, state: SUSPENDED [Dispatchers.Default]
at kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(SharedFlow.kt:394)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)
- "PackageChecker.VulnerableApiService.HMCL3.HMCLCore.main":StandaloneCoroutine{Active}, state: RUNNING [Dispatchers.Default]
at kotlinx.coroutines.flow.StateFlowImpl.collect(StateFlow.kt:411)
at com.intellij.packageChecker.service.VulnerableApiService$createLibrariesFqnVulnerabilitiesFlow$vulnerabilitiesUpdatedFlow$1.invokeSuspend(VulnerableApiService.kt:112)
at kotlinx.coroutines.flow.AbstractFlow.collect(Flow.kt:226)
at kotlinx.coroutines.flow.internal.CombineKt$combineInternal$2$1.invokeSuspend(Combine.kt:28)