| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268 |
- [H[2J[3J-test.shuffle 1761727910995605572
- DEBU 2025-10-29 11:51:50.996 +03 MSK kernelWg.GetKernelWg(): run
- DEBU 2025-10-29 11:51:50.996 +03 MSK kernelKeeper.GetKernelKeeper(): first run
- DEBU 2025-10-29 11:51:50.996 +03 MSK kernelWg.Add(): stream='kernel_keeper'
- DEBU 2025-10-29 11:51:50.996 +03 MSK kStoreKv.open()
- DEBU 2025-10-29 11:51:50.996 +03 MSK kernelKeeper.run()
- badger 2025/10/29 11:51:51 INFO: All 0 tables opened in 0s
- badger 2025/10/29 11:51:51 INFO: Discard stats nextEmptySlot: 0
- badger 2025/10/29 11:51:51 INFO: Set nextTxnTs to 0
- DEBU 2025-10-29 11:51:51.012 +03 MSK kernelWg.Add(): stream='kstore_kv'
- DEBU 2025-10-29 11:51:51.012 +03 MSK LocalCtx.Set(): key='kernStoreKV'
- DEBU 2025-10-29 11:51:51.012 +03 MSK kStoreKv.Delete(): key='test_builders'
- DEBU 2025-10-29 11:51:51.012 +03 MSK LocalCtx.Set(): key='monolitName'
- DEBU 2025-10-29 11:51:51.012 +03 MSK kernelWg.Add(): stream='bus_base'
- DEBU 2025-10-29 11:51:51.012 +03 MSK LocalCtx.Set(): key='kernBusBase'
- DEBU 2025-10-29 11:51:51.012 +03 MSK kBusHttp.GetKernelBusHttp(): new
- DEBU 2025-10-29 11:51:51.012 +03 MSK LocalCtx.Set(): key='kernBus'
- DEBU 2025-10-29 11:51:51.012 +03 MSK kServHttp.GetKernelServHttp(): first run
- DEBU 2025-10-29 11:51:51.012 +03 MSK LocalCtx.KBusBase.run()
- DEBU 2025-10-29 11:51:51.012 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:51.012 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:51.012 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:51.122 +03 MSK kernelWg.Add(): stream='kernel_server_http'
- DEBU 2025-10-29 11:51:51.122 +03 MSK LocalCtx.Set(): key='fiberApp'
- DEBU 2025-10-29 11:51:51.122 +03 MSK LocalCtx.Set(): key='kServHttp'
- DEBU 2025-10-29 11:51:51.122 +03 MSK LocalCtx.Set(): key='isLocal'
- DEBU 2025-10-29 11:51:51.123 +03 MSK LocalCtx.Get(): key='isLocal'
- DEBU 2025-10-29 11:51:51.123 +03 MSK LocalCtx.Get(): key='isLocal'
- DEBU 2025-10-29 11:51:51.123 +03 MSK LocalCtx.Set(): key='monolitName'
- DEBU 2025-10-29 11:51:51.123 +03 MSK LocalCtx.Set(): key='monolit'
- DEBU 2025-10-29 11:51:51.123 +03 MSK LocalCtx.Set(): key='monolitName'
- DEBU 2025-10-29 11:51:51.123 +03 MSK LocalCtx.Set(): key='isLocal'
- DEBU 2025-10-29 11:51:51.124 +03 MSK LocalCtx.Get(): key='isLocal'
- DEBU 2025-10-29 11:51:51.124 +03 MSK ClientBusHttp.NewClientBusHttp()
- DEBU 2025-10-29 11:51:51.124 +03 MSK LocalCtx.KBusBase.Publish(): topic='test_mod_live'
- DEBU 2025-10-29 11:51:51.124 +03 MSK kServHttp.GetKernelServHttp()
- DEBU 2025-10-29 11:51:51.124 +03 MSK LocalCtx.Set(): key='wui_IHN6IX4VNUMZVJ4YOZE6QSMIEG'
- DEBU 2025-10-29 11:51:51.124 +03 MSK LocalCtx.Set(): key='wui_PW6JZGEVPW6LHKITSKT4OBQIR4'
- DEBU 2025-10-29 11:51:51.124 +03 MSK LocalCtx.KBusBase.Publish(): topic='kServHttp_live'
- DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.Get(): key='fiberApp'
- DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.Get(): key='fiberApp'
- DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.Get(): key='fiberApp'
- DEBU 2025-10-29 11:51:51.125 +03 MSK kServHttp.GetKernelServHttp()
- DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.Get(): key='fiberApp'
- DEBU 2025-10-29 11:51:51.125 +03 MSK kServHttp.GetKernelServHttp()
- DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.Get(): key='fiberApp'
- DEBU 2025-10-29 11:51:51.125 +03 MSK kServHttp.GetKernelServHttp()
- DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.Get(): key='fiberApp'
- DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.KBusBase.Publish(): topic='kCtx_live'
- DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.Get(): key='fiberApp'
- DEBU 2025-10-29 11:51:51.125 +03 MSK kServHttp.GetKernelServHttp()
- DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.KBusBase.Publish(): topic='kKeeper_live'
- DEBU 2025-10-29 11:51:51.125 +03 MSK kServHttp.Run(): url='http://localhost:18311/'
- DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.kCtx.Cancel()
- DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.KBusBase.Publish(): topic='wui_live'
- DEBU 2025-10-29 11:51:51.125 +03 MSK kernelKeeper.run(): cancel app context, err=
- context canceled
- DEBU 2025-10-29 11:51:51.125 +03 MSK kernelWg.Done(): stream(kernel_keeper) done
- DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.kCtx.Done()
- DEBU 2025-10-29 11:51:51.125 +03 MSK kernelKeeper.run(): end
- DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.kCtx.Done()
- DEBU 2025-10-29 11:51:51.125 +03 MSK kernelWg.Done(): stream(bus_base) done
- DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.KBusBase.close(): done
- DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.kCtx.Done()
- ┌───────────────────────────────────────────────────┐
- │ unknown monolit │
- │ Fiber v2.52.9 │
- │ http://127.0.0.1:18311 │
- │ (bound on host 0.0.0.0 and port 18311) │
- │ │
- │ Handlers ............ 25 Processes ........... 1 │
- │ Prefork ....... Disabled PID ........... 1031091 │
- └───────────────────────────────────────────────────┘
- method | path | name | handlers
- ------ | ---- | ---- | --------
- OPTIONS | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- GET | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- PUT | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- CONNECT | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- HEAD | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- TRACE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- DELETE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- POST | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- PATCH | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- POST | /api_time | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api.(*HttpApi).postTime-fm gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api.(*HttpApi).postTime-fm gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api.(*HttpApi).postTime-fm gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api.(*HttpApi).postTime-fm
- POST | /bus/pub | | gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_http.(*kBusHttp).postPublish-fm
- POST | /bus/request | | gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_http.(*kBusHttp).postSendRequest-fm
- POST | /bus/sub | | gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_http.(*kBusHttp).postSub-fm
- POST | /bus/unsub | | gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_http.(*kBusHttp).postUnsub-fm
- POST | /module/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModule-fm
- POST | /module_ctx/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleCtx-fm
- POST | /module_log/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleLog-fm
- POST | /module_state/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleState-fm
- POST | /module_svg_day/svg_day_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgDay-fm
- POST | /module_svg_min/svg_min_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgMin-fm
- POST | /module_svg_sec/svg_sec_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgSec-fm
- HEAD | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
- GET | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
- HEAD | /monolit | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).getMonolit-fm
- GET | /monolit | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).getMonolit-fm
- POST | /monolit_ctx | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitCtx-fm
- POST | /monolit_log | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitLog-fm
- POST | /monolit_state | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitState-fm
- POST | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- DELETE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- PUT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- CONNECT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- OPTIONS | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- HEAD | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- TRACE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- GET | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- PATCH | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- POST | /wui/click/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_wui.GetModuleWui.HTTPHandlerFunc.HTTPHandler.func1
- coverage: 100.0% of statements
- panic: test timed out after 30s
- running tests:
- TestBuilders (30s)
- goroutine 147 [running]:
- testing.(*M).startAlarm.func1()
- /home/user/coding/go/src/testing/testing.go:2682 +0x605
- created by time.goFunc
- /home/user/coding/go/src/time/sleep.go:215 +0x45
- goroutine 1 [chan receive]:
- testing.(*T).Run(0xc000250380, {0x12a96be, 0xc}, 0x1682250)
- /home/user/coding/go/src/testing/testing.go:2005 +0x9fe
- testing.runTests.func1(0xc000250380)
- /home/user/coding/go/src/testing/testing.go:2477 +0x86
- testing.tRunner(0xc000250380, 0xc000059ae0)
- /home/user/coding/go/src/testing/testing.go:1934 +0x21d
- testing.runTests(0xc0000127f8, {0x1e1b980, 0x1, 0x1}, {0x2?, 0x4ba965?, 0x1e404a0?})
- /home/user/coding/go/src/testing/testing.go:2475 +0x96d
- testing.(*M).Run(0xc0000d7680)
- /home/user/coding/go/src/testing/testing.go:2337 +0xed5
- main.main()
- _testmain.go:55 +0x165
- goroutine 66 [select]:
- github.com/dgraph-io/badger/v4.(*levelsController).runCompactor(0xc0001bc150, 0x0, 0xc0002aef00)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/levels.go:507 +0x4ac
- created by github.com/dgraph-io/badger/v4.(*levelsController).startCompact in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/levels.go:348 +0x7e
- goroutine 8 [sleep]:
- time.Sleep(0xf4240)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).Wait(0xc000230af0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:93 +0x30
- gitp78su.ipnodns.ru/svi/kern/v3.(*tester).new(0xc000299ec0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kern_test.go:162 +0xfbc
- gitp78su.ipnodns.ru/svi/kern/v3.TestBuilders(0xc000250540)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kern_test.go:32 +0x16f
- testing.tRunner(0xc000250540, 0x1682250)
- /home/user/coding/go/src/testing/testing.go:1934 +0x21d
- created by testing.(*T).Run in goroutine 1
- /home/user/coding/go/src/testing/testing.go:1997 +0x9d3
- goroutine 9 [sleep]:
- time.Sleep(0xf4240)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).close(0xc000230af0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:126 +0xa5
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.GetKernelWg in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:48 +0x47d
- goroutine 132 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 19 [syscall]:
- os/signal.signal_recv()
- /home/user/coding/go/src/runtime/sigqueue.go:152 +0x29
- os/signal.loop()
- /home/user/coding/go/src/os/signal/signal_unix.go:23 +0x1d
- created by os/signal.Notify.func1.1 in goroutine 10
- /home/user/coding/go/src/os/signal/signal.go:152 +0x47
- goroutine 11 [select]:
- github.com/dgraph-io/badger/v4/y.(*WaterMark).process(0xc00028a930, 0xc00028a900)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/y/watermark.go:203 +0x406
- created by github.com/dgraph-io/badger/v4/y.(*WaterMark).Init in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/y/watermark.go:61 +0x125
- goroutine 12 [select]:
- github.com/dgraph-io/badger/v4/y.(*WaterMark).process(0xc00028a960, 0xc00028a900)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/y/watermark.go:203 +0x406
- created by github.com/dgraph-io/badger/v4/y.(*WaterMark).Init in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/y/watermark.go:61 +0x125
- goroutine 13 [select]:
- github.com/dgraph-io/ristretto/v2/z.(*AllocatorPool).freeupAllocators(0xc000012a50)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/ristretto/v2/z/allocator.go:372 +0x23f
- created by github.com/dgraph-io/ristretto/v2/z.NewAllocatorPool in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/ristretto/v2/z/allocator.go:311 +0x17a
- goroutine 14 [select]:
- github.com/dgraph-io/ristretto/v2.(*defaultPolicy[...]).processItems(0x0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/ristretto/v2/policy.go:61 +0x105
- created by github.com/dgraph-io/ristretto/v2.newDefaultPolicy[...] in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/ristretto/v2/policy.go:45 +0x35d
- goroutine 35 [select]:
- github.com/dgraph-io/ristretto/v2.(*Cache[...]).processItems(0x17bce60)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/ristretto/v2/cache.go:530 +0x289
- created by github.com/dgraph-io/ristretto/v2.NewCache[...] in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/ristretto/v2/cache.go:263 +0x120b
- goroutine 36 [select]:
- github.com/dgraph-io/badger/v4.(*DB).monitorCache(0xc00023cd88, 0xc0002aed20)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:461 +0x2a5
- created by github.com/dgraph-io/badger/v4.Open in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:303 +0x147d
- goroutine 37 [select]:
- github.com/dgraph-io/badger/v4.(*DB).updateSize(0xc00023cd88, 0xc0002aeea0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:1193 +0x24c
- created by github.com/dgraph-io/badger/v4.Open in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:323 +0x18d3
- goroutine 67 [select]:
- github.com/dgraph-io/badger/v4.(*levelsController).runCompactor(0xc0001bc150, 0x1, 0xc0002aef00)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/levels.go:507 +0x4ac
- created by github.com/dgraph-io/badger/v4.(*levelsController).startCompact in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/levels.go:348 +0x7e
- goroutine 68 [select]:
- github.com/dgraph-io/badger/v4.(*levelsController).runCompactor(0xc0001bc150, 0x2, 0xc0002aef00)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/levels.go:507 +0x4ac
- created by github.com/dgraph-io/badger/v4.(*levelsController).startCompact in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/levels.go:348 +0x7e
- goroutine 69 [select]:
- github.com/dgraph-io/badger/v4.(*levelsController).runCompactor(0xc0001bc150, 0x3, 0xc0002aef00)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/levels.go:507 +0x4ac
- created by github.com/dgraph-io/badger/v4.(*levelsController).startCompact in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/levels.go:348 +0x7e
- goroutine 70 [chan receive]:
- github.com/dgraph-io/badger/v4.(*DB).flushMemtable(0xc00023cd88, 0xc0002aef30)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:1100 +0xf2
- github.com/dgraph-io/badger/v4.Open.func5()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:349 +0x70
- created by github.com/dgraph-io/badger/v4.Open in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:348 +0x1e0b
- goroutine 71 [select]:
- github.com/dgraph-io/badger/v4.(*vlogThreshold).listenForValueThresholdUpdate(0xc0000c3400)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/value.go:1166 +0x245
- created by github.com/dgraph-io/badger/v4.Open in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:372 +0x29f5
- goroutine 72 [select]:
- github.com/dgraph-io/badger/v4.(*DB).doWrites(0xc00023cd88, 0xc0002aef90)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:928 +0x397
- created by github.com/dgraph-io/badger/v4.Open in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:379 +0x2ceb
- goroutine 73 [chan receive]:
- github.com/dgraph-io/badger/v4.(*valueLog).waitOnGC(0xc00023cf98, 0xc0002aefc0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/value.go:1069 +0xac
- created by github.com/dgraph-io/badger/v4.Open in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:383 +0x2edd
- goroutine 74 [select]:
- github.com/dgraph-io/badger/v4.(*publisher).listenForUpdates(0xc00028aa20, 0xc0002aeff0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/publisher.go:62 +0x205
- created by github.com/dgraph-io/badger/v4.Open in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:387 +0x309d
- goroutine 75 [chan receive]:
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kstore_kv.(*kStoreKv).close(0xc00005e980)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kstore_kv/kstore_kv.go:224 +0x1d9
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kstore_kv.(*kStoreKv).open in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kstore_kv/kstore_kv.go:178 +0x63e
- goroutine 131 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 85 [sleep]:
- time.Sleep(0xb2d05e00)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- github.com/gofiber/fiber/v2/middleware/monitor.New.func1.1()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:68 +0x4b
- created by github.com/gofiber/fiber/v2/middleware/monitor.New.func1 in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:66 +0x178
- goroutine 86 [sleep]:
- time.Sleep(0xdf8475800)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.(*ModStat).eventMinute(0xc006103280)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:50 +0x65
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.NewModStat in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:42 +0x5ab
- goroutine 88 [sleep]:
- time.Sleep(0xdf8475800)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.(*ModStat).eventMinute(0xc006103380)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:50 +0x65
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.NewModStat in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:42 +0x5ab
- goroutine 90 [sleep]:
- time.Sleep(0xdf8475800)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.(*ModStat).eventMinute(0xc006103580)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:50 +0x65
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.NewModStat in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:42 +0x5ab
- goroutine 92 [sleep]:
- time.Sleep(0xdf8475800)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.(*ModStat).eventMinute(0xc006103700)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:50 +0x65
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.NewModStat in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:42 +0x5ab
- goroutine 94 [sleep]:
- time.Sleep(0xdf8475800)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.(*ModStat).eventMinute(0xc006103840)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:50 +0x65
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.NewModStat in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:42 +0x5ab
- goroutine 130 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 78 [IO wait]:
- internal/poll.runtime_pollWait(0x76947a768400, 0x72)
- /home/user/coding/go/src/runtime/netpoll.go:351 +0x85
- internal/poll.(*pollDesc).wait(0xc00005e220, 0x72, 0x0)
- /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:84 +0xb1
- internal/poll.(*pollDesc).waitRead(...)
- /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:89
- internal/poll.(*FD).Accept(0xc00005e200)
- /home/user/coding/go/src/internal/poll/fd_unix.go:613 +0x4ea
- net.(*netFD).accept(0xc00005e200)
- /home/user/coding/go/src/net/fd_unix.go:161 +0x45
- net.(*TCPListener).accept(0xc0000c2880)
- /home/user/coding/go/src/net/tcpsock_posix.go:159 +0x4e
- net.(*TCPListener).Accept(0xc0000c2880)
- /home/user/coding/go/src/net/tcpsock.go:380 +0x65
- github.com/valyala/fasthttp.acceptConn(0xc000237208, {0x17ad840, 0xc0000c2880}, 0xc00638dd68)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1990 +0x62
- github.com/valyala/fasthttp.(*Server).Serve(0xc000237208, {0x17ad840, 0xc0000c2880})
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1878 +0x7ce
- github.com/gofiber/fiber/v2.(*App).Listen(0xc00022e508, {0xc0002c3afa, 0x6})
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/listen.go:93 +0x2b3
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run.func1()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:131 +0xfd
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 96
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:134 +0x3a5
- goroutine 133 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 79 [chan receive]:
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).fnChErr(0xc00011c3f0, 0xc0001bc380)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:160 +0x3b
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 96
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:135 +0x44d
- goroutine 20 [sleep]:
- time.Sleep(0x4c4b40)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kstore_kv.(*kStoreKv).wait(0xc00005e980, 0xc00639a000)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kstore_kv/kstore_kv.go:206 +0x2f
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kstore_kv.(*kStoreKv).close in goroutine 75
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kstore_kv/kstore_kv.go:223 +0x1cd
- goroutine 80 [sleep]:
- time.Sleep(0x2540be400)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- github.com/valyala/fasthttp.(*workerPool).Start.func2()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:68 +0x47
- created by github.com/valyala/fasthttp.(*workerPool).Start in goroutine 78
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:60 +0x19a
- goroutine 134 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 135 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 136 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 137 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 138 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 139 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 140 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 141 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 142 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 143 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 144 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 145 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 146 [sleep]:
- time.Sleep(0x3b9aca00)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- github.com/valyala/fasthttp.updateServerDate.func1()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2309 +0x25
- created by github.com/valyala/fasthttp.updateServerDate in goroutine 21
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2307 +0x29
- FAIL gitp78su.ipnodns.ru/svi/kern/v3 30.045s
- ok gitp78su.ipnodns.ru/svi/kern/v3/cmd/demo 3.024s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers 1.021s coverage: 92.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/kc/local_ctx 1.017s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/kc/local_ctx/ctx_value 1.020s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/kc/local_ctx/lst_sort 1.017s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/kc/log_buf 1.022s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/kc/log_buf/log_bus 1.017s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/kc/log_buf/log_bus/log_topic 1.022s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/kc/log_buf/log_msg 1.021s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/kc/safe_bool 1.018s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/kc/safe_bool_react 1.020s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/kc/safe_int 1.018s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/kc/safe_string 1.021s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kalias 1.017s coverage: [no statements]
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/dict_sub_hook 1.021s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/dict_topic_serve 1.015s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/dict_topic_sub 1.332s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_base 1.018s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_http 1.348s coverage: 100.0% of statements
- -test.shuffle 1761727912359164955
- DEBU 2025-10-29 11:51:52.359 +03 MSK kernelWg.GetKernelWg(): run
- DEBU 2025-10-29 11:51:52.359 +03 MSK kernelKeeper.GetKernelKeeper(): first run
- DEBU 2025-10-29 11:51:52.359 +03 MSK kernelWg.Add(): stream='kernel_keeper'
- DEBU 2025-10-29 11:51:52.359 +03 MSK kernelWg.Add(): stream='bus_base'
- DEBU 2025-10-29 11:51:52.359 +03 MSK LocalCtx.Set(): key='kernBusBase'
- DEBU 2025-10-29 11:51:52.359 +03 MSK ClientBusHttp.NewClientBusHttp()
- DEBU 2025-10-29 11:51:52.359 +03 MSK kBusHttp.GetKernelBusHttp(): new
- DEBU 2025-10-29 11:51:52.359 +03 MSK LocalCtx.Set(): key='kernBus'
- DEBU 2025-10-29 11:51:52.359 +03 MSK kServHttp.GetKernelServHttp(): first run
- DEBU 2025-10-29 11:51:52.359 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:52.359 +03 MSK LocalCtx.KBusBase.run()
- DEBU 2025-10-29 11:51:52.359 +03 MSK kernelKeeper.run()
- DEBU 2025-10-29 11:51:52.359 +03 MSK ClientBusHttp.NewClientBusHttp()
- DEBU 2025-10-29 11:51:52.359 +03 MSK LocalCtx.Set(): key='monolitName'
- DEBU 2025-10-29 11:51:52.359 +03 MSK ClientBusHttp.NewClientBusHttp()
- DEBU 2025-10-29 11:51:52.359 +03 MSK kServHttp.GetKernelServHttp(): first run
- DEBU 2025-10-29 11:51:52.359 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:52.359 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:52.359 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:52.469 +03 MSK kernelWg.Add(): stream='kernel_server_http'
- DEBU 2025-10-29 11:51:52.469 +03 MSK LocalCtx.Set(): key='fiberApp'
- DEBU 2025-10-29 11:51:52.469 +03 MSK LocalCtx.Set(): key='kServHttp'
- DEBU 2025-10-29 11:51:52.469 +03 MSK kServHttp.Run(): url='http://localhost:18350/'
- ┌───────────────────────────────────────────────────┐
- │ test_monolit │
- │ Fiber v2.52.9 │
- │ http://127.0.0.1:18350 │
- │ (bound on host 0.0.0.0 and port 18350) │
- │ │
- │ Handlers ............. 4 Processes ........... 1 │
- │ Prefork ....... Disabled PID ........... 1031539 │
- └───────────────────────────────────────────────────┘
- method | path | name | handlers
- ------ | ---- | ---- | --------
- DELETE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- PATCH | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- TRACE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- HEAD | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- OPTIONS | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- GET | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- POST | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- CONNECT | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- PUT | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- HEAD | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
- GET | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
- PUT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- DELETE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- POST | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- CONNECT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- HEAD | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- OPTIONS | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- TRACE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- GET | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- PATCH | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- ERRO 2025-10-29 11:51:52.486 +03 MSK ClientBusHttp.Unsubscribe(): in make request, err=
- ClientBusHttp.makePost(): url="http://localhost:18350/bus/unsub", status="404 Not Found"
- ERRO 2025-10-29 11:51:52.486 +03 MSK ClientBusHttp.Unsubscribe(): in make request, err=
- ClientBusHttp.makePost(): after request, err=
- Post "tra-ta-ta/bus/unsub": unsupported protocol scheme ""
- --- FAIL: TestClientBusHttp (0.13s)
- client_bus_http_test.go:342: new
- client_bus_http_test.go:388: newBad1
- client_bus_http_test.go:377: newBad2
- client_bus_http_test.go:349: newGood1
- client_bus_http_test.go:296: unsub
- client_bus_http_test.go:331: unsubBad1
- client_bus_http_test.go:320: unsubBad2
- client_bus_http_test.go:304: unsubBad3
- client_bus_http_test.go:221: sub
- client_bus_http_test.go:285: subBad1
- client_bus_http_test.go:266: subBad2
- client_bus_http_test.go:230: subBad3
- client_bus_http_test.go:244: subBad3(): err=ClientBusHttp.Subscribe(): in make request, err=
- ClientBusHttp.makePost(): url="http://localhost:18350/bus/sub", status="404 Not Found"
- FAIL
- coverage: 42.2% of statements
- FAIL gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_http/client_bus_http 0.145s
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_local 1.015s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_local/client_bus_local 1.015s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_msg/msg_pub 1.014s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_msg/msg_serve 1.013s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_msg/msg_sub 1.014s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_msg/msg_unsub 1.014s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx 1.014s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kernel_keeper 1.037s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg 1.027s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule 1.513s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat 1.116s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat_day 1.015s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat_minute 1.014s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat_sec 1.014s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kmonolit 1.017s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http 1.181s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kstore_kv 3.070s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/krn/ktypes 1.015s coverage: 100.0% of statements
- -test.shuffle 1761727913800671302
- DEBU 2025-10-29 11:51:53.800 +03 MSK kernelWg.GetKernelWg(): run
- DEBU 2025-10-29 11:51:53.801 +03 MSK kernelKeeper.GetKernelKeeper(): first run
- DEBU 2025-10-29 11:51:53.801 +03 MSK kernelWg.Add(): stream='kernel_keeper'
- DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.Set(): key='monolitName'
- DEBU 2025-10-29 11:51:53.801 +03 MSK kernelKeeper.run()
- DEBU 2025-10-29 11:51:53.801 +03 MSK kernelWg.Add(): stream='bus_base'
- DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.Set(): key='kernBusBase'
- DEBU 2025-10-29 11:51:53.801 +03 MSK kServHttp.GetKernelServHttp(): first run
- DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.KBusBase.run()
- DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.KBusBase.Publish(): topic='kCtx_live'
- DEBU 2025-10-29 11:51:53.918 +03 MSK kernelWg.Add(): stream='kernel_server_http'
- DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Set(): key='fiberApp'
- DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Set(): key='kServHttp'
- DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Set(): key='wui_FXPY23JFLCTWSEMY7CZ57467FS'
- DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Set(): key='wui_GQB2NOZ36CAZGQSX5MTAIIOBAM'
- DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Get(): key='fiberApp'
- DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Get(): key='fiberApp'
- DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Get(): key='fiberApp'
- INFO 2025-10-29 11:51:53.918 +03 MSK LocalCtx.ModuleKernelCtx.Run(): module=kCtx, is run
- DEBU 2025-10-29 11:51:53.918 +03 MSK kServHttp.Run(): url='http://localhost:18328/'
- ┌───────────────────────────────────────────────────┐
- │ test_monolit │
- │ Fiber v2.52.9 │
- │ http://127.0.0.1:18328 │
- │ (bound on host 0.0.0.0 and port 18328) │
- │ │
- │ Handlers ............ 17 Processes ........... 1 │
- │ Prefork ....... Disabled PID ........... 1032005 │
- └───────────────────────────────────────────────────┘
- method | path | name | handlers
- ------ | ---- | ---- | --------
- PATCH | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- TRACE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- OPTIONS | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- HEAD | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- CONNECT | /DEBU 2025-10-29 11:51:53.920 +03 MSK LocalCtx.kCtx.Done()
- DEBU 2025-10-29 11:51:53.920 +03 MSK kernelKeeper.run(): cancel app context, err=
- context canceled
- DEBU 2025-10-29 11:51:53.920 +03 MSK LocalCtx.kCtx.Cancel()
- DEBU 2025-10-29 11:51:53.920 +03 MSK kernelWg.Done(): stream(kernel_keeper) done
- DEBU 2025-10-29 11:51:53.920 +03 MSK LocalCtx.kCtx.Done()
- DEBU 2025-10-29 11:51:53.920 +03 MSK kernelKeeper.run(): end
- | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- DELETE | / | | DEBU 2025-10-29 11:51:53.920 +03 MSK kernelWg.Done(): stream(bus_base) done
- github.com/gofiber/fiber/v2/middleware/compress.New.func3
- PUT | /DEBU 2025-10-29 11:51:53.920 +03 MSK LocalCtx.KBusBase.close(): done
- | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- POST | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- GET | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- POST | /api_time | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api.(*HttpApi).postTime-fm
- POST | /module/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModule-fm
- POST | /module_ctx/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleCtx-fm
- POST | /module_log/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleLog-fm
- POST | /module_state/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleState-fm
- POST | /module_svg_day/svg_day_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgDay-fm
- POST | /module_svg_min/svg_min_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgMin-fm
- POST | /module_svg_sec/svg_sec_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgSec-fm
- HEAD | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
- GET | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
- GET | /monolit | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).getMonolit-fm
- HEAD | /monolit | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).getMonolit-fm
- POST | /monolit_ctx | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitCtx-fm
- POST | /monolit_log | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitLog-fm
- POST | /monolit_state | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitState-fm
- POST | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- DELETE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- HEAD | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- CONNECT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- OPTIONS | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- PUT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- TRACE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- GET | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- PATCH | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- coverage: 100.0% of statements
- panic: test timed out after 30s
- running tests:
- TestModKernelCtx (30s)
- goroutine 65 [running]:
- testing.(*M).startAlarm.func1()
- /home/user/coding/go/src/testing/testing.go:2682 +0x605
- created by time.goFunc
- /home/user/coding/go/src/time/sleep.go:215 +0x45
- goroutine 1 [chan receive]:
- testing.(*T).Run(0xc000102fc0, {0xc43120, 0x10}, 0x1007300)
- /home/user/coding/go/src/testing/testing.go:2005 +0x9fe
- testing.runTests.func1(0xc000102fc0)
- /home/user/coding/go/src/testing/testing.go:2477 +0x86
- testing.tRunner(0xc000102fc0, 0xc000047ae0)
- /home/user/coding/go/src/testing/testing.go:1934 +0x21d
- testing.runTests(0xc000126660, {0x1485f90, 0x1, 0x1}, {0x2?, 0x4b6125?, 0x149d3a0?})
- /home/user/coding/go/src/testing/testing.go:2475 +0x96d
- testing.(*M).Run(0xc000124780)
- /home/user/coding/go/src/testing/testing.go:2337 +0xed5
- main.main()
- _testmain.go:55 +0x165
- goroutine 23 [sleep]:
- time.Sleep(0xf4240)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).Wait(0xc0001926e0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:93 +0x30
- gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_kctx.(*tester).done(0xc000343ea0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_kctx/mod_kctx_test.go:50 +0xc4
- gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_kctx.TestModKernelCtx(0xc000103180)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_kctx/mod_kctx_test.go:43 +0x272
- testing.tRunner(0xc000103180, 0x1007300)
- /home/user/coding/go/src/testing/testing.go:1934 +0x21d
- created by testing.(*T).Run in goroutine 1
- /home/user/coding/go/src/testing/testing.go:1997 +0x9d3
- goroutine 24 [sleep]:
- time.Sleep(0xf4240)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).close(0xc0001926e0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:126 +0xa5
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.GetKernelWg in goroutine 23
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:48 +0x47d
- goroutine 62 [sleep]:
- time.Sleep(0x2540be400)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- github.com/valyala/fasthttp.(*workerPool).Start.func2()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:68 +0x47
- created by github.com/valyala/fasthttp.(*workerPool).Start in goroutine 9
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:60 +0x19a
- goroutine 5 [sleep]:
- time.Sleep(0xb2d05e00)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- github.com/gofiber/fiber/v2/middleware/monitor.New.func1.1()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:68 +0x4b
- created by github.com/gofiber/fiber/v2/middleware/monitor.New.func1 in goroutine 23
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:66 +0x178
- goroutine 28 [sleep]:
- time.Sleep(0xdf8475800)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.(*ModStat).eventMinute(0xc000115100)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:50 +0x65
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.NewModStat in goroutine 23
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:42 +0x5ab
- goroutine 34 [syscall]:
- os/signal.signal_recv()
- /home/user/coding/go/src/runtime/sigqueue.go:152 +0x29
- os/signal.loop()
- /home/user/coding/go/src/os/signal/signal_unix.go:23 +0x1d
- created by os/signal.Notify.func1.1 in goroutine 25
- /home/user/coding/go/src/os/signal/signal.go:152 +0x47
- goroutine 9 [IO wait]:
- internal/poll.runtime_pollWait(0x707fd8f39e00, 0x72)
- /home/user/coding/go/src/runtime/netpoll.go:351 +0x85
- internal/poll.(*pollDesc).wait(0xc000196020, 0x72, 0x0)
- /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:84 +0xb1
- internal/poll.(*pollDesc).waitRead(...)
- /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:89
- internal/poll.(*FD).Accept(0xc000196000)
- /home/user/coding/go/src/internal/poll/fd_unix.go:613 +0x4ea
- net.(*netFD).accept(0xc000196000)
- /home/user/coding/go/src/net/fd_unix.go:161 +0x45
- net.(*TCPListener).accept(0xc00039a000)
- /home/user/coding/go/src/net/tcpsock_posix.go:159 +0x4e
- net.(*TCPListener).Accept(0xc00039a000)
- /home/user/coding/go/src/net/tcpsock.go:380 +0x65
- github.com/valyala/fasthttp.acceptConn(0xc00017a6c8, {0x10b17d0, 0xc00039a000}, 0xc000147d68)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1990 +0x62
- github.com/valyala/fasthttp.(*Server).Serve(0xc00017a6c8, {0x10b17d0, 0xc00039a000})
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1878 +0x7ce
- github.com/gofiber/fiber/v2.(*App).Listen(0xc000178508, {0xc0003c200a, 0x6})
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/listen.go:93 +0x2b3
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run.func1()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:131 +0xfd
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 7
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:134 +0x3a5
- goroutine 10 [chan receive]:
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).fnChErr(0xc000170e70, 0xc00032e540)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:160 +0x3b
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 7
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:135 +0x44d
- goroutine 98 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 99 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 100 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 101 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 102 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 103 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 104 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 105 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 106 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 107 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 108 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 109 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 110 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 111 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 112 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 113 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 83 [sleep]:
- time.Sleep(0x3b9aca00)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- github.com/valyala/fasthttp.updateServerDate.func1()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2309 +0x25
- created by github.com/valyala/fasthttp.updateServerDate in goroutine 82
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2307 +0x29
- FAIL gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_kctx 30.017s
- -test.shuffle 1761727913800598544
- DEBU 2025-10-29 11:51:53.800 +03 MSK kernelWg.GetKernelWg(): run
- DEBU 2025-10-29 11:51:53.800 +03 MSK kernelKeeper.GetKernelKeeper(): first run
- DEBU 2025-10-29 11:51:53.800 +03 MSK kernelWg.Add(): stream='kernel_keeper'
- DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.Set(): key='monolitName'
- DEBU 2025-10-29 11:51:53.801 +03 MSK kernelKeeper.run()
- DEBU 2025-10-29 11:51:53.801 +03 MSK kernelWg.Add(): stream='bus_base'
- DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.Set(): key='kernBusBase'
- DEBU 2025-10-29 11:51:53.801 +03 MSK kServHttp.GetKernelServHttp(): first run
- DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.KBusBase.run()
- DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.KBusBase.Publish(): topic='kKeeper_live'
- DEBU 2025-10-29 11:51:53.918 +03 MSK kernelWg.Add(): stream='kernel_server_http'
- DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Set(): key='fiberApp'
- DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Set(): key='kServHttp'
- DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Set(): key='wui_YBCVGHUKIVWIFB6W57PYC5KUFC'
- DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Set(): key='wui_JGNH64M3H6ZCPSM3JN56QW2VBW'
- DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Get(): key='fiberApp'
- DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Get(): key='fiberApp'
- DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Get(): key='fiberApp'
- INFO 2025-10-29 11:51:53.918 +03 MSK kernelKeeper.ModuleKernelCtx.Run(): module=kKeeper, is run
- DEBU 2025-10-29 11:51:53.918 +03 MSK kServHttp.Run(): url='http://localhost:18320/'
- ┌───────────────────────────────────────────────────┐
- │ test_monolit │
- │ Fiber v2.52.9 │
- │ http://127.0.0.1:18320 │
- │ (bound on host 0.0.0.0 and port 18320) │
- │ │
- │ Handlers ............ 17 Processes ........... 1 │
- │ Prefork ....... Disabled PID ........... 1032006 │
- └───────────────────────────────────────────────────┘
- method | path | name | handlers
- ------ | ---- | ---- | --------
- PATCH | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- TRACE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- OPTIONS | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- HEAD | / | | DEBU 2025-10-29 11:51:53.920 +03 MSK LocalCtx.kCtx.Cancel()
- github.com/gofiber/fiber/v2/middleware/compress.New.func3
- CONNECT | / | DEBU 2025-10-29 11:51:53.920 +03 MSK LocalCtx.kCtx.Done()
- DEBU 2025-10-29 11:51:53.920 +03 MSK kernelKeeper.run(): cancel app context, err=
- context canceled
- | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- DELETE | / DEBU 2025-10-29 11:51:53.920 +03 MSK kernelWg.Done(): stream(kernel_keeper) done
- | DEBU 2025-10-29 11:51:53.920 +03 MSK kernelKeeper.run(): end
- | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- PUT | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- POST | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- DEBU 2025-10-29 11:51:53.920 +03 MSK LocalCtx.kCtx.Done()
- DEBU 2025-10-29 11:51:53.920 +03 MSK kernelWg.Done(): stream(bus_base) done
- GET | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- POST | /api_time | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api.(*HttpApi).postTime-fm
- POST | /module/:id DEBU 2025-10-29 11:51:53.920 +03 MSK LocalCtx.KBusBase.close(): done
- | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModule-fm
- POST | /module_ctx/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleCtx-fm
- POST | /module_log/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleLog-fm
- POST | /module_state/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleState-fm
- POST | /module_svg_day/svg_day_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgDay-fm
- POST | /module_svg_min/svg_min_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgMin-fm
- POST | /module_svg_sec/svg_sec_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgSec-fm
- HEAD | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
- GET | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
- GET | /monolit | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).getMonolit-fm
- HEAD | /monolit | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).getMonolit-fm
- POST | /monolit_ctx | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitCtx-fm
- POST | /monolit_log | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitLog-fm
- POST | /monolit_state | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitState-fm
- POST | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- DELETE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- HEAD | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- CONNECT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- OPTIONS | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- PUT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- TRACE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- GET | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- PATCH | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- coverage: 100.0% of statements
- panic: test timed out after 30s
- running tests:
- TestModKeeper (30s)
- goroutine 114 [running]:
- testing.(*M).startAlarm.func1()
- /home/user/coding/go/src/testing/testing.go:2682 +0x605
- created by time.goFunc
- /home/user/coding/go/src/time/sleep.go:215 +0x45
- goroutine 1 [chan receive]:
- testing.(*T).Run(0xc00023a380, {0xc413aa, 0xd}, 0x1007300)
- /home/user/coding/go/src/testing/testing.go:2005 +0x9fe
- testing.runTests.func1(0xc00023a380)
- /home/user/coding/go/src/testing/testing.go:2477 +0x86
- testing.tRunner(0xc00023a380, 0xc000047ae0)
- /home/user/coding/go/src/testing/testing.go:1934 +0x21d
- testing.runTests(0xc000012678, {0x1485f90, 0x1, 0x1}, {0x2?, 0x4b6125?, 0x149d3a0?})
- /home/user/coding/go/src/testing/testing.go:2475 +0x96d
- testing.(*M).Run(0xc0000c4640)
- /home/user/coding/go/src/testing/testing.go:2337 +0xed5
- main.main()
- _testmain.go:55 +0x165
- goroutine 8 [sleep]:
- time.Sleep(0xf4240)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).Wait(0xc0002206e0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:93 +0x30
- gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_keeper.(*tester).done(0xc00038fea0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_keeper/mod_keeper_test.go:50 +0xc4
- gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_keeper.TestModKeeper(0xc00023a540)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_keeper/mod_keeper_test.go:43 +0x272
- testing.tRunner(0xc00023a540, 0x1007300)
- /home/user/coding/go/src/testing/testing.go:1934 +0x21d
- created by testing.(*T).Run in goroutine 1
- /home/user/coding/go/src/testing/testing.go:1997 +0x9d3
- goroutine 9 [sleep]:
- time.Sleep(0xf4240)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).close(0xc0002206e0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:126 +0xa5
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.GetKernelWg in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:48 +0x47d
- goroutine 82 [sleep]:
- time.Sleep(0x2540be400)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- github.com/valyala/fasthttp.(*workerPool).Start.func2()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:68 +0x47
- created by github.com/valyala/fasthttp.(*workerPool).Start in goroutine 39
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:60 +0x19a
- goroutine 35 [sleep]:
- time.Sleep(0xb2d05e00)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- github.com/gofiber/fiber/v2/middleware/monitor.New.func1.1()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:68 +0x4b
- created by github.com/gofiber/fiber/v2/middleware/monitor.New.func1 in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:66 +0x178
- goroutine 13 [sleep]:
- time.Sleep(0xdf8475800)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.(*ModStat).eventMinute(0xc0000b1100)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:50 +0x65
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.NewModStat in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:42 +0x5ab
- goroutine 50 [syscall]:
- os/signal.signal_recv()
- /home/user/coding/go/src/runtime/sigqueue.go:152 +0x29
- os/signal.loop()
- /home/user/coding/go/src/os/signal/signal_unix.go:23 +0x1d
- created by os/signal.Notify.func1.1 in goroutine 10
- /home/user/coding/go/src/os/signal/signal.go:152 +0x47
- goroutine 39 [IO wait]:
- internal/poll.runtime_pollWait(0x7fdd4e7b8800, 0x72)
- /home/user/coding/go/src/runtime/netpoll.go:351 +0x85
- internal/poll.(*pollDesc).wait(0xc00004d620, 0x72, 0x0)
- /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:84 +0xb1
- internal/poll.(*pollDesc).waitRead(...)
- /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:89
- internal/poll.(*FD).Accept(0xc00004d600)
- /home/user/coding/go/src/internal/poll/fd_unix.go:613 +0x4ea
- net.(*netFD).accept(0xc00004d600)
- /home/user/coding/go/src/net/fd_unix.go:161 +0x45
- net.(*TCPListener).accept(0xc00032c300)
- /home/user/coding/go/src/net/tcpsock_posix.go:159 +0x4e
- net.(*TCPListener).Accept(0xc00032c300)
- /home/user/coding/go/src/net/tcpsock.go:380 +0x65
- github.com/valyala/fasthttp.acceptConn(0xc00021c6c8, {0x10b17d0, 0xc00032c300}, 0xc0000dfd68)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1990 +0x62
- github.com/valyala/fasthttp.(*Server).Serve(0xc00021c6c8, {0x10b17d0, 0xc00032c300})
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1878 +0x7ce
- github.com/gofiber/fiber/v2.(*App).Listen(0xc00021a508, {0xc0004317fa, 0x6})
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/listen.go:93 +0x2b3
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run.func1()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:131 +0xfd
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 37
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:134 +0x3a5
- goroutine 40 [chan receive]:
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).fnChErr(0xc0000fee70, 0xc00033c540)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:160 +0x3b
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 37
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:135 +0x44d
- goroutine 81 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 98 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 99 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 100 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 101 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 102 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 103 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 104 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 105 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 106 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 107 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 108 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 109 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 110 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 111 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 112 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 113 [sleep]:
- time.Sleep(0x3b9aca00)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- github.com/valyala/fasthttp.updateServerDate.func1()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2309 +0x25
- created by github.com/valyala/fasthttp.updateServerDate in goroutine 80
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2307 +0x29
- FAIL gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_keeper 30.017s
- ok gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http 1.152s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/btn_modules 1.012s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/btn_monolit 1.011s coverage: 100.0% of statements
- -test.shuffle 1761727914263141513
- DEBU 2025-10-29 11:51:54.263 +03 MSK kernelWg.GetKernelWg(): run
- DEBU 2025-10-29 11:51:54.263 +03 MSK kernelKeeper.GetKernelKeeper(): first run
- DEBU 2025-10-29 11:51:54.263 +03 MSK kernelWg.Add(): stream='kernel_keeper'
- DEBU 2025-10-29 11:51:54.263 +03 MSK kernelKeeper.run()
- DEBU 2025-10-29 11:51:54.263 +03 MSK LocalCtx.Set(): key='isLocal'
- DEBU 2025-10-29 11:51:54.263 +03 MSK LocalCtx.Get(): key='isLocal'
- DEBU 2025-10-29 11:51:54.263 +03 MSK LocalCtx.Set(): key='monolitName'
- DEBU 2025-10-29 11:51:54.263 +03 MSK LocalCtx.Set(): key='monolit'
- DEBU 2025-10-29 11:51:54.263 +03 MSK LocalCtx.Set(): key='monolitName'
- DEBU 2025-10-29 11:51:54.263 +03 MSK kServHttp.GetKernelServHttp(): first run
- DEBU 2025-10-29 11:51:54.263 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:54.263 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:54.263 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:54.376 +03 MSK kernelWg.Add(): stream='kernel_server_http'
- DEBU 2025-10-29 11:51:54.376 +03 MSK LocalCtx.Set(): key='fiberApp'
- DEBU 2025-10-29 11:51:54.376 +03 MSK LocalCtx.Set(): key='kServHttp'
- DEBU 2025-10-29 11:51:54.376 +03 MSK LocalCtx.Get(): key='fiberApp'
- DEBU 2025-10-29 11:51:54.376 +03 MSK kServHttp.Run(): url='http://localhost:18312/'
- DEBU 2025-10-29 11:51:54.376 +03 MSK LocalCtx.kCtx.Cancel()
- DEBU 2025-10-29 11:51:54.376 +03 MSK kernelKeeper.run(): cancel app context, err=
- context canceled
- DEBU 2025-10-29 11:51:54.376 +03 MSK kernelWg.Done(): stream(kernel_keeper) done
- DEBU 2025-10-29 11:51:54.376 +03 MSK kernelKeeper.run(): end
- DEBU 2025-10-29 11:51:54.376 +03 MSK LocalCtx.kCtx.Done()
- ┌───────────────────────────────────────────────────┐
- │ test_monolit │
- │ Fiber v2.52.9 │
- │ http://127.0.0.1:18312 │
- │ (bound on host 0.0.0.0 and port 18312) │
- │ │
- │ Handlers ............. 5 Processes ........... 1 │
- │ Prefork ....... Disabled PID ........... 1032174 │
- └───────────────────────────────────────────────────┘
- method | path | name | handlers
- ------ | ---- | ---- | --------
- DELETE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- PATCH | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- TRACE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- HEAD | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- OPTIONS | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- GET | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- POST | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- CONNECT | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- PUT | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- POST | /api_time | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api.(*HttpApi).postTime-fm
- HEAD | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
- GET | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
- PUT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- DELETE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- POST | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- CONNECT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- HEAD | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- OPTIONS | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- TRACE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- GET | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- PATCH | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- coverage: 100.0% of statements
- panic: test timed out after 30s
- running tests:
- TestPageMonolit (30s)
- goroutine 60 [running]:
- testing.(*M).startAlarm.func1()
- /home/user/coding/go/src/testing/testing.go:2682 +0x605
- created by time.goFunc
- /home/user/coding/go/src/time/sleep.go:215 +0x45
- goroutine 1 [chan receive]:
- testing.(*T).Run(0xc00023a380, {0xc29644, 0xf}, 0xfeaf30)
- /home/user/coding/go/src/testing/testing.go:2005 +0x9fe
- testing.runTests.func1(0xc00023a380)
- /home/user/coding/go/src/testing/testing.go:2477 +0x86
- testing.tRunner(0xc00023a380, 0xc000047ae0)
- /home/user/coding/go/src/testing/testing.go:1934 +0x21d
- testing.runTests(0xc000012678, {0x145af20, 0x1, 0x1}, {0x2?, 0x4b6125?, 0x14722c0?})
- /home/user/coding/go/src/testing/testing.go:2475 +0x96d
- testing.(*M).Run(0xc0000c4780)
- /home/user/coding/go/src/testing/testing.go:2337 +0xed5
- main.main()
- _testmain.go:55 +0x165
- goroutine 8 [sleep]:
- time.Sleep(0xf4240)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).Wait(0xc0002206e0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:93 +0x30
- gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api.(*tester).done(0xc000277ea0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api/http_api_test.go:53 +0xc4
- gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api.TestPageMonolit(0xc00023a540)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api/http_api_test.go:29 +0xb9
- testing.tRunner(0xc00023a540, 0xfeaf30)
- /home/user/coding/go/src/testing/testing.go:1934 +0x21d
- created by testing.(*T).Run in goroutine 1
- /home/user/coding/go/src/testing/testing.go:1997 +0x9d3
- goroutine 9 [sleep]:
- time.Sleep(0xf4240)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).close(0xc0002206e0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:126 +0xa5
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.GetKernelWg in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:48 +0x47d
- goroutine 34 [syscall]:
- os/signal.signal_recv()
- /home/user/coding/go/src/runtime/sigqueue.go:152 +0x29
- os/signal.loop()
- /home/user/coding/go/src/os/signal/signal_unix.go:23 +0x1d
- created by os/signal.Notify.func1.1 in goroutine 10
- /home/user/coding/go/src/os/signal/signal.go:152 +0x47
- goroutine 35 [sleep]:
- time.Sleep(0xb2d05e00)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- github.com/gofiber/fiber/v2/middleware/monitor.New.func1.1()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:68 +0x4b
- created by github.com/gofiber/fiber/v2/middleware/monitor.New.func1 in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:66 +0x178
- goroutine 67 [IO wait]:
- internal/poll.runtime_pollWait(0x7bfa57578800, 0x72)
- /home/user/coding/go/src/runtime/netpoll.go:351 +0x85
- internal/poll.(*pollDesc).wait(0xc00004c0a0, 0x72, 0x0)
- /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:84 +0xb1
- internal/poll.(*pollDesc).waitRead(...)
- /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:89
- internal/poll.(*FD).Accept(0xc00004c080)
- /home/user/coding/go/src/internal/poll/fd_unix.go:613 +0x4ea
- net.(*netFD).accept(0xc00004c080)
- /home/user/coding/go/src/net/fd_unix.go:161 +0x45
- net.(*TCPListener).accept(0xc0004e4040)
- /home/user/coding/go/src/net/tcpsock_posix.go:159 +0x4e
- net.(*TCPListener).Accept(0xc0004e4040)
- /home/user/coding/go/src/net/tcpsock.go:380 +0x65
- github.com/valyala/fasthttp.acceptConn(0xc00021c6c8, {0x1093a10, 0xc0004e4040}, 0xc0000dfd68)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1990 +0x62
- github.com/valyala/fasthttp.(*Server).Serve(0xc00021c6c8, {0x1093a10, 0xc0004e4040})
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1878 +0x7ce
- github.com/gofiber/fiber/v2.(*App).Listen(0xc00021a508, {0xc0003e002a, 0x6})
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/listen.go:93 +0x2b3
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run.func1()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:131 +0xfd
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 36
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:134 +0x3a5
- goroutine 68 [chan receive]:
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).fnChErr(0xc0000feee0, 0xc0004d6000)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:160 +0x3b
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 36
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:135 +0x44d
- goroutine 38 [sleep]:
- time.Sleep(0x3b9aca00)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- github.com/valyala/fasthttp.updateServerDate.func1()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2309 +0x25
- created by github.com/valyala/fasthttp.updateServerDate in goroutine 37
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2307 +0x29
- goroutine 69 [sleep]:
- time.Sleep(0x2540be400)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- github.com/valyala/fasthttp.(*workerPool).Start.func2()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:68 +0x47
- created by github.com/valyala/fasthttp.(*workerPool).Start in goroutine 67
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:60 +0x19a
- goroutine 71 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 72 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 73 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 74 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 75 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 76 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 77 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 78 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 79 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 80 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 81 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 98 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 99 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 100 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 101 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 102 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- FAIL gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api 30.017s
- ok gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module 1.425s coverage: 100.0% of statements
- -test.shuffle 1761727914842554258
- DEBU 2025-10-29 11:51:54.842 +03 MSK kernelWg.GetKernelWg(): run
- DEBU 2025-10-29 11:51:54.842 +03 MSK kernelKeeper.GetKernelKeeper(): first run
- DEBU 2025-10-29 11:51:54.842 +03 MSK kernelWg.Add(): stream='kernel_keeper'
- DEBU 2025-10-29 11:51:54.842 +03 MSK LocalCtx.Set(): key='isLocal'
- DEBU 2025-10-29 11:51:54.842 +03 MSK kernelKeeper.run()
- DEBU 2025-10-29 11:51:54.844 +03 MSK LocalCtx.Get(): key='isLocal'
- DEBU 2025-10-29 11:51:54.844 +03 MSK LocalCtx.Get(): key='isLocal'
- DEBU 2025-10-29 11:51:54.844 +03 MSK LocalCtx.Set(): key='monolitName'
- DEBU 2025-10-29 11:51:54.844 +03 MSK LocalCtx.Set(): key='monolit'
- DEBU 2025-10-29 11:51:54.844 +03 MSK LocalCtx.Set(): key='monolitName'
- DEBU 2025-10-29 11:51:54.844 +03 MSK kServHttp.GetKernelServHttp(): first run
- DEBU 2025-10-29 11:51:54.844 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:54.844 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:54.844 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:54.964 +03 MSK kernelWg.Add(): stream='kernel_server_http'
- DEBU 2025-10-29 11:51:54.964 +03 MSK LocalCtx.Set(): key='fiberApp'
- DEBU 2025-10-29 11:51:54.964 +03 MSK LocalCtx.Set(): key='kServHttp'
- DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Set(): key='wui_TLYN7Y5SL3JZBCMDLJNOBW5MAT'
- DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Set(): key='wui_TJNVYFGUV7BR7ZKNYYMGND2OIM'
- DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Get(): key='fiberApp'
- DEBU 2025-10-29 11:51:54.965 +03 MSK kServHttp.Run(): url='http://localhost:18310/'
- DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Get(): key='monolit'
- DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Get(): key='monolit'
- ┌───────────────────────────────────────────────────┐
- │ test_monolit │
- │ Fiber v2.52.9 │
- │ http://127.0.0.1:18310 │
- │ (bound on host 0.0.0.0 and port 18310) │
- │ │
- │ Handlers ............. 9 Processes ........... 1 │
- │ Prefork ....... Disabled PID ........... 1032398 │
- DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Get(): key='monolit'
- └───────────────────────────────────────────────────┘
- DEBU 2025-10-29 11:51:54.966 +03 MSK LocalCtx.Get(): key='monolit'
- DEBU 2025-10-29 11:51:54.966 +03 MSK LocalCtx.test msg
- DEBU 2025-10-29 11:51:54.966 +03 MSK LocalCtx.Get(): key='monolit'
- method | path | name | handlers
- ------ | ---- | ---- | --------
- OPTIONS | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- PATCH | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- PUT | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- GET | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- HEAD | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- TRACE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- DELETE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- CONNECT | / | DEBU 2025-10-29 11:51:54.966 +03 MSK kernelKeeper.run(): cancel app context, err=
- context canceled
- | github.com/gofiber/fiber/v2/middleware/compress.New.func3 DEBU 2025-10-29 11:51:54.966 +03 MSK LocalCtx.kCtx.Done()
- POSTDEBU 2025-10-29 11:51:54.966 +03 MSK LocalCtx.kCtx.Cancel()
- | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- HEAD | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2 DEBU 2025-10-29 11:51:54.966 +03 MSK kernelWg.Done(): stream(kernel_keeper) done
- DEBU 2025-10-29 11:51:54.967 +03 MSK kernelKeeper.run(): end
- GET | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
- HEAD | /monolit | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).getMonolit-fm
- GET | /monolit | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).getMonolit-fm
- POST | /monolit_ctx | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitCtx-fm
- POST | /monolit_log | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitLog-fm
- POST | /monolit_state | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitState-fm
- PUT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- DELETE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- CONNECT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- POST | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- OPTIONS | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- HEAD | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- TRACE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- GET | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- PATCH | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- coverage: 100.0% of statements
- panic: test timed out after 30s
- running tests:
- TestPageMonolit (30s)
- goroutine 91 [running]:
- testing.(*M).startAlarm.func1()
- /home/user/coding/go/src/testing/testing.go:2682 +0x605
- created by time.goFunc
- /home/user/coding/go/src/time/sleep.go:215 +0x45
- goroutine 1 [chan receive]:
- testing.(*T).Run(0xc000102c40, {0xc3541e, 0xf}, 0xff8f10)
- /home/user/coding/go/src/testing/testing.go:2005 +0x9fe
- testing.runTests.func1(0xc000102c40)
- /home/user/coding/go/src/testing/testing.go:2477 +0x86
- testing.tRunner(0xc000102c40, 0xc000047ae0)
- /home/user/coding/go/src/testing/testing.go:1934 +0x21d
- testing.runTests(0xc000120660, {0x146ffa0, 0x1, 0x1}, {0x2?, 0x4b6125?, 0x1487440?})
- /home/user/coding/go/src/testing/testing.go:2475 +0x96d
- testing.(*M).Run(0xc00011e5a0)
- /home/user/coding/go/src/testing/testing.go:2337 +0xed5
- main.main()
- _testmain.go:55 +0x165
- goroutine 5 [sleep]:
- time.Sleep(0xb2d05e00)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- github.com/gofiber/fiber/v2/middleware/monitor.New.func1.1()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:68 +0x4b
- created by github.com/gofiber/fiber/v2/middleware/monitor.New.func1 in goroutine 21
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:66 +0x178
- goroutine 21 [sleep]:
- time.Sleep(0xf4240)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).Wait(0xc0002126e0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:93 +0x30
- gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*tester).done(0xc000595e98)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit/page_monolit_test.go:112 +0x12d
- gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.TestPageMonolit(0xc000102e00)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit/page_monolit_test.go:33 +0xd9
- testing.tRunner(0xc000102e00, 0xff8f10)
- /home/user/coding/go/src/testing/testing.go:1934 +0x21d
- created by testing.(*T).Run in goroutine 1
- /home/user/coding/go/src/testing/testing.go:1997 +0x9d3
- goroutine 22 [sleep]:
- time.Sleep(0xf4240)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).close(0xc0002126e0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:126 +0xa5
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.GetKernelWg in goroutine 21
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:48 +0x47d
- goroutine 8 [sleep]:
- time.Sleep(0x2540be400)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- github.com/valyala/fasthttp.(*workerPool).Start.func2()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:68 +0x47
- created by github.com/valyala/fasthttp.(*workerPool).Start in goroutine 68
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:60 +0x19a
- goroutine 35 [syscall]:
- os/signal.signal_recv()
- /home/user/coding/go/src/runtime/sigqueue.go:152 +0x29
- os/signal.loop()
- /home/user/coding/go/src/os/signal/signal_unix.go:23 +0x1d
- created by os/signal.Notify.func1.1 in goroutine 23
- /home/user/coding/go/src/os/signal/signal.go:152 +0x47
- goroutine 68 [IO wait]:
- internal/poll.runtime_pollWait(0x7982eff99e00, 0x72)
- /home/user/coding/go/src/runtime/netpoll.go:351 +0x85
- internal/poll.(*pollDesc).wait(0xc000216020, 0x72, 0x0)
- /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:84 +0xb1
- internal/poll.(*pollDesc).waitRead(...)
- /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:89
- internal/poll.(*FD).Accept(0xc000216000)
- /home/user/coding/go/src/internal/poll/fd_unix.go:613 +0x4ea
- net.(*netFD).accept(0xc000216000)
- /home/user/coding/go/src/net/fd_unix.go:161 +0x45
- net.(*TCPListener).accept(0xc0005ae000)
- /home/user/coding/go/src/net/tcpsock_posix.go:159 +0x4e
- net.(*TCPListener).Accept(0xc0005ae000)
- /home/user/coding/go/src/net/tcpsock.go:380 +0x65
- github.com/valyala/fasthttp.acceptConn(0xc0002bc008, {0x10a21f0, 0xc0005ae000}, 0xc000599d68)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1990 +0x62
- github.com/valyala/fasthttp.(*Server).Serve(0xc0002bc008, {0x10a21f0, 0xc0005ae000})
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1878 +0x7ce
- github.com/gofiber/fiber/v2.(*App).Listen(0xc0002b6008, {0xc00046000a, 0x6})
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/listen.go:93 +0x2b3
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run.func1()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:131 +0xfd
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 6
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:134 +0x3a5
- goroutine 69 [chan receive]:
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).fnChErr(0xc0002aa310, 0xc000170070)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:160 +0x3b
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 6
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:135 +0x44d
- goroutine 39 [sleep]:
- time.Sleep(0x3b9aca00)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- github.com/valyala/fasthttp.updateServerDate.func1()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2309 +0x25
- created by github.com/valyala/fasthttp.updateServerDate in goroutine 7
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2307 +0x29
- goroutine 43 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 44 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 45 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 46 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 47 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 48 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 49 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 82 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 83 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 84 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 85 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 86 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 87 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 88 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 89 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 90 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- FAIL gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit 30.018s
- -test.shuffle 1761727914842679877
- DEBU 2025-10-29 11:51:54.842 +03 MSK kernelWg.GetKernelWg(): run
- DEBU 2025-10-29 11:51:54.843 +03 MSK kernelKeeper.GetKernelKeeper(): first run
- DEBU 2025-10-29 11:51:54.843 +03 MSK kernelWg.Add(): stream='kernel_keeper'
- DEBU 2025-10-29 11:51:54.843 +03 MSK LocalCtx.Set(): key='monolitName'
- DEBU 2025-10-29 11:51:54.843 +03 MSK kernelKeeper.run()
- DEBU 2025-10-29 11:51:54.843 +03 MSK kernelWg.Add(): stream='bus_base'
- DEBU 2025-10-29 11:51:54.843 +03 MSK LocalCtx.Set(): key='kernBusBase'
- DEBU 2025-10-29 11:51:54.843 +03 MSK kServHttp.GetKernelServHttp(): first run
- DEBU 2025-10-29 11:51:54.843 +03 MSK LocalCtx.KBusBase.run()
- DEBU 2025-10-29 11:51:54.843 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:54.843 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:54.843 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:54.843 +03 MSK LocalCtx.KBusBase.Publish(): topic='wui_live'
- DEBU 2025-10-29 11:51:54.965 +03 MSK kernelWg.Add(): stream='kernel_server_http'
- DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Set(): key='fiberApp'
- DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Set(): key='kServHttp'
- DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Set(): key='wui_U56VP5ZOC25Y4IS3KOH3Q2K3PG'
- DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Set(): key='wui_7YIITLDDKXGZFU5QF3BFKXY2C6'
- DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Get(): key='fiberApp'
- DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Get(): key='fiberApp'
- DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Get(): key='fiberApp'
- DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Get(): key='fiberApp'
- DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Set(): key='isLocal'
- DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Get(): key='isLocal'
- DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Set(): key='monolitName'
- DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Set(): key='monolit'
- DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Set(): key='monolitName'
- DEBU 2025-10-29 11:51:54.965 +03 MSK kServHttp.GetKernelServHttp()
- INFO 2025-10-29 11:51:54.965 +03 MSK LocalCtx.ModuleWui.Run(): module=wui, is run
- DEBU 2025-10-29 11:51:54.965 +03 MSK kServHttp.Run(): url='http://localhost:18330/'
- ┌───────────────────────────────────────────────────┐
- │ test_monolit │
- │ Fiber v2.52.9 │
- │ http://127.0.0.1:18330 │
- │ (bound on host 0.0.0.0 and port 18330) │
- │ │
- │ Handlers ............ 18 Processes ........... 1 │
- │ Prefork ....... Disabled PID ........... 1032399 │
- └───────────────────────────────────────────────────┘
- DEBU 2025-10-29 11:51:54.967 +03 MSK kServHttp.Run(): url='http://localhost:18330/'
- method | path | name | handlers
- ------ | ---- | ---- | --------
- DELETE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- CONNECTERRO 2025-10-29 11:51:54.967 +03 MSK kServHttp.Run(): err=
- kServHttp.fnChErr(): in listen, err=
- failed to listen: listen tcp4 :18330: bind: address already in use
- DEBU 2025-10-29 11:51:54.967 +03 MSK LocalCtx.kCtx.Cancel()
- | DEBU 2025-10-29 11:51:54.967 +03 MSK LocalCtx.kCtx.Done()
- / DEBU 2025-10-29 11:51:54.967 +03 MSK LocalCtx.kCtx.Done()
- DEBU 2025-10-29 11:51:54.967 +03 MSK kernelKeeper.run(): cancel app context, err=
- context canceled
- DEBU 2025-10-29 11:51:54.967 +03 MSK LocalCtx.kCtx.Done()
- | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- DEBU 2025-10-29 11:51:54.967 +03 MSK kernelWg.Done(): stream(kernel_keeper) done
- DEBU 2025-10-29 11:51:54.967 +03 MSK kernelKeeper.run(): end
- DEBU 2025-10-29 11:51:54.967 +03 MSK LocalCtx.Get(): key='ert'
- PUT | DEBU 2025-10-29 11:51:54.967 +03 MSK kernelWg.Done(): stream(bus_base) done
- / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- HEAD | / | DEBU 2025-10-29 11:51:54.967 +03 MSK LocalCtx.KBusBase.close(): done
- | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- PATCH | / ERRO 2025-10-29 11:51:54.967 +03 MSK LocalCtx.ModuleWui.wuiClick(): id(ert), widget not exists
- | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- GET | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- OPTIONS | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- POST | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- TRACE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- POST | /api_time | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api.(*HttpApi).postTime-fm
- POST | /module/:id | DEBU 2025-10-29 11:51:54.968 +03 MSK LocalCtx.Set(): key='wui_ZFWINUM6IGEV6LHKS3ET7GD4QG'
- | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModule-fm
- POST | /module_ctx/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleCtx-fm
- POST | /module_log/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleLog-fm
- POST | /module_state/:id | | DEBU 2025-10-29 11:51:54.968 +03 MSK LocalCtx.Get(): key='wui_ZFWINUM6IGEV6LHKS3ET7GD4QG'
- ERRO 2025-10-29 11:51:54.968 +03 MSK LocalCtx.ModuleWui.wuiClick(): widget(*wlabel.WuiLabel) not button
- gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleState-fm
- POST | /module_svg_day/svg_day_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgDay-fm
- POST | DEBU 2025-10-29 11:51:54.968 +03 MSK LocalCtx.Set(): key='wui_77DL37XSLN6TFGIOYNFGELQCST'
- /module_svg_min/svg_min_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgMin-fm
- POST | /module_svg_sec/svg_sec_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgSec-fm
- HEAD | /monitor | DEBU 2025-10-29 11:51:54.968 +03 MSK LocalCtx.Get(): key='wui_77DL37XSLN6TFGIOYNFGELQCST'
- | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
- GET | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
- HEAD | /monolit | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).getMonolit-fm
- GET | /monolit | | DEBU 2025-10-29 11:51:54.968 +03 MSK LocalCtx.Set(): key='wui_4EMHBMSTC4IRYMLHXZYPKL4CCU'
- gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).getMonolit-fm
- POST | /monolit_ctx | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitCtx-fm
- POST | /monolit_log | DEBU 2025-10-29 11:51:54.968 +03 MSK LocalCtx.Get(): key='wui_4EMHBMSTC4IRYMLHXZYPKL4CCU'
- | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitLog-fm
- POST | /monolit_state | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitState-fm
- POST | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- DELETE | /static | | DEBU 2025-10-29 11:51:54.969 +03 MSK LocalCtx.Set(): key='wui_T3EQZ5HFYN3LT5Z3I244KREAV7'
- github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- PUT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- CONNECT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- OPTIONS | /static | DEBU 2025-10-29 11:51:54.969 +03 MSK LocalCtx.Get(): key='wui_T3EQZ5HFYN3LT5Z3I244KREAV7'
- | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- GET | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- TRACE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- HEAD | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- PATCH | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- POST | DEBU 2025-10-29 11:51:54.969 +03 MSK LocalCtx.kCtx.Cancel()
- /wui/click/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_wui.GetModuleWui.HTTPHandlerFunc.HTTPHandler.func1
- coverage: 100.0% of statements
- panic: test timed out after 30s
- running tests:
- TestModKernelCtx (30s)
- goroutine 89 [running]:
- testing.(*M).startAlarm.func1()
- /home/user/coding/go/src/testing/testing.go:2682 +0x605
- created by time.goFunc
- /home/user/coding/go/src/time/sleep.go:215 +0x45
- goroutine 1 [chan receive]:
- testing.(*T).Run(0xc000102fc0, {0xc587f0, 0x10}, 0x101cf00)
- /home/user/coding/go/src/testing/testing.go:2005 +0x9fe
- testing.runTests.func1(0xc000102fc0)
- /home/user/coding/go/src/testing/testing.go:2477 +0x86
- testing.tRunner(0xc000102fc0, 0xc000047ae0)
- /home/user/coding/go/src/testing/testing.go:1934 +0x21d
- testing.runTests(0xc000126660, {0x14a7230, 0x1, 0x1}, {0x2?, 0x4b6125?, 0x14bf7c0?})
- /home/user/coding/go/src/testing/testing.go:2475 +0x96d
- testing.(*M).Run(0xc0001246e0)
- /home/user/coding/go/src/testing/testing.go:2337 +0xed5
- main.main()
- _testmain.go:55 +0x165
- goroutine 23 [sleep]:
- time.Sleep(0xf4240)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).Wait(0xc0001926e0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:93 +0x30
- gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_wui.(*tester).done(0xc000114fc0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_wui/mod_wui_test.go:184 +0x17a
- gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_wui.TestModKernelCtx(0xc000103180)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_wui/mod_wui_test.go:53 +0x2e5
- testing.tRunner(0xc000103180, 0x101cf00)
- /home/user/coding/go/src/testing/testing.go:1934 +0x21d
- created by testing.(*T).Run in goroutine 1
- /home/user/coding/go/src/testing/testing.go:1997 +0x9d3
- goroutine 24 [sleep]:
- time.Sleep(0xf4240)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).close(0xc0001926e0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:126 +0xa5
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.GetKernelWg in goroutine 23
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:48 +0x47d
- goroutine 28 [sleep]:
- time.Sleep(0xdf8475800)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.(*ModStat).eventMinute(0xc000115140)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:50 +0x65
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.NewModStat in goroutine 23
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:42 +0x5ab
- goroutine 3 [syscall]:
- os/signal.signal_recv()
- /home/user/coding/go/src/runtime/sigqueue.go:152 +0x29
- os/signal.loop()
- /home/user/coding/go/src/os/signal/signal_unix.go:23 +0x1d
- created by os/signal.Notify.func1.1 in goroutine 25
- /home/user/coding/go/src/os/signal/signal.go:152 +0x47
- goroutine 4 [sleep]:
- time.Sleep(0xb2d05e00)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- github.com/gofiber/fiber/v2/middleware/monitor.New.func1.1()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:68 +0x4b
- created by github.com/gofiber/fiber/v2/middleware/monitor.New.func1 in goroutine 23
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:66 +0x178
- goroutine 78 [sleep]:
- time.Sleep(0x3b9aca00)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- github.com/valyala/fasthttp.updateServerDate.func1()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2309 +0x25
- created by github.com/valyala/fasthttp.updateServerDate in goroutine 36
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2307 +0x29
- goroutine 8 [IO wait]:
- internal/poll.runtime_pollWait(0x7f3324599e00, 0x72)
- /home/user/coding/go/src/runtime/netpoll.go:351 +0x85
- internal/poll.(*pollDesc).wait(0xc00059a020, 0x72, 0x0)
- /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:84 +0xb1
- internal/poll.(*pollDesc).waitRead(...)
- /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:89
- internal/poll.(*FD).Accept(0xc00059a000)
- /home/user/coding/go/src/internal/poll/fd_unix.go:613 +0x4ea
- net.(*netFD).accept(0xc00059a000)
- /home/user/coding/go/src/net/fd_unix.go:161 +0x45
- net.(*TCPListener).accept(0xc00059e000)
- /home/user/coding/go/src/net/tcpsock_posix.go:159 +0x4e
- net.(*TCPListener).Accept(0xc00059e000)
- /home/user/coding/go/src/net/tcpsock.go:380 +0x65
- github.com/valyala/fasthttp.acceptConn(0xc00017a6c8, {0x10c90a0, 0xc00059e000}, 0xc00014bd68)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1990 +0x62
- github.com/valyala/fasthttp.(*Server).Serve(0xc00017a6c8, {0x10c90a0, 0xc00059e000})
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1878 +0x7ce
- github.com/gofiber/fiber/v2.(*App).Listen(0xc000178508, {0xc00045e00a, 0x6})
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/listen.go:93 +0x2b3
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run.func1()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:131 +0xfd
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 6
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:134 +0x3a5
- goroutine 9 [chan receive]:
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).fnChErr(0xc000170ee0, 0xc0003ba930)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:160 +0x3b
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 6
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:135 +0x44d
- goroutine 40 [sleep]:
- time.Sleep(0x2540be400)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- github.com/valyala/fasthttp.(*workerPool).Start.func2()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:68 +0x47
- created by github.com/valyala/fasthttp.(*workerPool).Start in goroutine 8
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:60 +0x19a
- goroutine 16 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 98 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 99 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 100 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 101 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 102 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 103 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 104 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 105 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 106 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 107 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 108 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 109 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 110 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 111 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- goroutine 112 [chan receive]:
- github.com/valyala/fasthttp/stackless.funcWorker(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
- created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
- FAIL gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_wui 30.019s
- ok gitp78su.ipnodns.ru/svi/kern/v3/mock/mock_env 1.010s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/mock/mock_hand_serve 1.011s coverage: 100.0% of statements
- -test.shuffle 1761727914990507952
- DEBU 2025-10-29 11:51:54.990 +03 MSK kernelWg.GetKernelWg(): run
- DEBU 2025-10-29 11:51:54.990 +03 MSK kernelKeeper.GetKernelKeeper(): first run
- DEBU 2025-10-29 11:51:54.990 +03 MSK kernelWg.Add(): stream='kernel_keeper'
- DEBU 2025-10-29 11:51:54.990 +03 MSK LocalCtx.Set(): key='monolitName'
- DEBU 2025-10-29 11:51:54.990 +03 MSK kernelKeeper.run()
- 2025/10/29 11:51:54 HandlerHttpSub.FnBack(): msg=hello_test
- DEBU 2025-10-29 11:51:54.991 +03 MSK kServHttp.GetKernelServHttp(): first run
- DEBU 2025-10-29 11:51:54.991 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:54.991 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:54.991 +03 MSK LocalCtx.Get(): key='monolitName'
- DEBU 2025-10-29 11:51:55.114 +03 MSK kernelWg.Add(): stream='kernel_server_http'
- DEBU 2025-10-29 11:51:55.114 +03 MSK LocalCtx.Set(): key='fiberApp'
- DEBU 2025-10-29 11:51:55.114 +03 MSK LocalCtx.Set(): key='kServHttp'
- 2025/10/29 11:51:55 HandlerHttpSub.FnBack(): msg=test_msg
- 2025/10/29 11:51:55 HandlerHttpSub.FnBack(): msg=test_msg
- DEBU 2025-10-29 11:51:55.114 +03 MSK LocalCtx.kCtx.Cancel()
- DEBU 2025-10-29 11:51:55.114 +03 MSK kServHttp.Run(): url='"http://localhost:18200/"'
- DEBU 2025-10-29 11:51:55.114 +03 MSK kernelKeeper.run(): cancel app context, err=
- context canceled
- DEBU 2025-10-29 11:51:55.114 +03 MSK kernelWg.Done(): stream(kernel_keeper) done
- DEBU 2025-10-29 11:51:55.114 +03 MSK kernelKeeper.run(): end
- DEBU 2025-10-29 11:51:55.114 +03 MSK LocalCtx.kCtx.Done()
- ┌───────────────────────────────────────────────────┐
- │ test_monolit │
- │ Fiber v2.52.9 │
- │ http://127.0.0.1:18200 │
- │ (bound on host 0.0.0.0 and port 18200) │
- │ │
- │ Handlers ............. 5 Processes ........... 1 │
- │ Prefork ....... Disabled PID ........... 1032525 │
- └───────────────────────────────────────────────────┘
- method | path | name | handlers
- ------ | ---- | ---- | --------
- PUT | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- PATCH | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- TRACE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- HEAD | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- OPTIONS | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- GET | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- POST | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- CONNECT | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- DELETE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
- HEAD | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
- GET | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
- PUT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- DELETE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- POST | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- CONNECT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- HEAD | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- OPTIONS | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- TRACE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- GET | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- PATCH | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
- POST | /test/local | | gitp78su.ipnodns.ru/svi/kern/v3/mock/mock_hand_sub_http.(*tester).testLocal-fm
- coverage: 100.0% of statements
- panic: test timed out after 30s
- running tests:
- TestHandlerHttpSub (30s)
- goroutine 58 [running]:
- testing.(*M).startAlarm.func1()
- /home/user/coding/go/src/testing/testing.go:2682 +0x605
- created by time.goFunc
- /home/user/coding/go/src/time/sleep.go:215 +0x45
- goroutine 1 [chan receive]:
- testing.(*T).Run(0xc000102fc0, {0xc27e2d, 0x12}, 0xfe76b0)
- /home/user/coding/go/src/testing/testing.go:2005 +0x9fe
- testing.runTests.func1(0xc000102fc0)
- /home/user/coding/go/src/testing/testing.go:2477 +0x86
- testing.tRunner(0xc000102fc0, 0xc000047ae0)
- /home/user/coding/go/src/testing/testing.go:1934 +0x21d
- testing.runTests(0xc000126660, {0x1455ee0, 0x1, 0x1}, {0x2?, 0x4b6125?, 0x146d1a0?})
- /home/user/coding/go/src/testing/testing.go:2475 +0x96d
- testing.(*M).Run(0xc000124780)
- /home/user/coding/go/src/testing/testing.go:2337 +0xed5
- main.main()
- _testmain.go:55 +0x165
- goroutine 23 [sleep]:
- time.Sleep(0xf4240)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).Wait(0xc0001926e0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:93 +0x30
- gitp78su.ipnodns.ru/svi/kern/v3/mock/mock_hand_sub_http.TestHandlerHttpSub(0xc000103180)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mock/mock_hand_sub_http/mock_hand_sub_http_test.go:31 +0x1a4
- testing.tRunner(0xc000103180, 0xfe76b0)
- /home/user/coding/go/src/testing/testing.go:1934 +0x21d
- created by testing.(*T).Run in goroutine 1
- /home/user/coding/go/src/testing/testing.go:1997 +0x9d3
- goroutine 24 [sleep]:
- time.Sleep(0xf4240)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).close(0xc0001926e0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:126 +0xa5
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.GetKernelWg in goroutine 23
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:48 +0x47d
- goroutine 66 [sleep]:
- time.Sleep(0x2540be400)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- github.com/valyala/fasthttp.(*workerPool).Start.func2()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:68 +0x47
- created by github.com/valyala/fasthttp.(*workerPool).Start in goroutine 7
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:60 +0x19a
- goroutine 34 [syscall]:
- os/signal.signal_recv()
- /home/user/coding/go/src/runtime/sigqueue.go:152 +0x29
- os/signal.loop()
- /home/user/coding/go/src/os/signal/signal_unix.go:23 +0x1d
- created by os/signal.Notify.func1.1 in goroutine 25
- /home/user/coding/go/src/os/signal/signal.go:152 +0x47
- goroutine 4 [sleep]:
- time.Sleep(0xb2d05e00)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- github.com/gofiber/fiber/v2/middleware/monitor.New.func1.1()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:68 +0x4b
- created by github.com/gofiber/fiber/v2/middleware/monitor.New.func1 in goroutine 23
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:66 +0x178
- goroutine 5 [sleep]:
- time.Sleep(0x989680)
- /home/user/coding/go/src/runtime/time.go:363 +0x165
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run(0xc000170d20)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:149 +0x4bd
- created by gitp78su.ipnodns.ru/svi/kern/v3/mock/mock_hand_sub_http.(*tester).backBad2 in goroutine 23
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mock/mock_hand_sub_http/mock_hand_sub_http_test.go:54 +0x285
- goroutine 7 [IO wait]:
- internal/poll.runtime_pollWait(0x76d16b3b9e00, 0x72)
- /home/user/coding/go/src/runtime/netpoll.go:351 +0x85
- internal/poll.(*pollDesc).wait(0xc000196020, 0x72, 0x0)
- /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:84 +0xb1
- internal/poll.(*pollDesc).waitRead(...)
- /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:89
- internal/poll.(*FD).Accept(0xc000196000)
- /home/user/coding/go/src/internal/poll/fd_unix.go:613 +0x4ea
- net.(*netFD).accept(0xc000196000)
- /home/user/coding/go/src/net/fd_unix.go:161 +0x45
- net.(*TCPListener).accept(0xc000524040)
- /home/user/coding/go/src/net/tcpsock_posix.go:159 +0x4e
- net.(*TCPListener).Accept(0xc000524040)
- /home/user/coding/go/src/net/tcpsock.go:380 +0x65
- github.com/valyala/fasthttp.acceptConn(0xc00017a6c8, {0x108fd68, 0xc000524040}, 0xc00014bd68)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1990 +0x62
- github.com/valyala/fasthttp.(*Server).Serve(0xc00017a6c8, {0x108fd68, 0xc000524040})
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1878 +0x7ce
- github.com/gofiber/fiber/v2.(*App).Listen(0xc000178508, {0xc0003f204a, 0x6})
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/listen.go:93 +0x2b3
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run.func1()
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:131 +0xfd
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 5
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:134 +0x3a5
- goroutine 8 [chan receive]:
- gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).fnChErr(0xc000170d20, 0xc000170bd0)
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:160 +0x3b
- created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 5
- /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:135 +0x44d
- FAIL gitp78su.ipnodns.ru/svi/kern/v3/mock/mock_hand_sub_http 30.017s
- ok gitp78su.ipnodns.ru/svi/kern/v3/mock/mock_hand_sub_local 1.010s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/wui 1.011s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/wui/hx_swap 1.011s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/wui/hx_swap_oob 1.011s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/wui/hx_target 1.010s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/wui/hx_trigger 1.011s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/wui/hx_url 1.011s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/wui/hx_url_method 1.010s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/wui/hx_url_patch 1.012s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/wui/hx_vals 1.011s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/wui/wbutton 1.012s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/wui/wctx 1.010s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/wui/whx 1.010s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/wui/wlabel 1.010s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/wui/wtext 1.010s coverage: 100.0% of statements
- ok gitp78su.ipnodns.ru/svi/kern/v3/wui/wtypes 1.010s coverage: [no statements]
- ok gitp78su.ipnodns.ru/svi/kern/v3/wui/wwidget 1.010s coverage: 100.0% of statements
- FAIL
|