/srv/irclogs.ubuntu.com/2021/11/15/#ubuntu-release.txt

=== cpaelzer_ is now known as cpaelzer
-queuebot:#ubuntu-release- New: accepted oem-somerville-maester-meta [amd64] (focal-proposed) [20.04~ubuntu1]08:38
-queuebot:#ubuntu-release- Packageset: Added gcc-12 to i386-whitelist in jammy09:26
-queuebot:#ubuntu-release- Packageset: Added pytest-runner to i386-whitelist in jammy09:26
-queuebot:#ubuntu-release- Packageset: Added python-pkgconfig to i386-whitelist in jammy09:27
-queuebot:#ubuntu-release- New binary: yubikey-manager-qt [amd64] (jammy-proposed/universe) [1.2.4-1] (no packageset)11:22
-queuebot:#ubuntu-release- New binary: yubikey-manager-qt [ppc64el] (jammy-proposed/universe) [1.2.4-1] (no packageset)11:38
-queuebot:#ubuntu-release- New binary: yubikey-manager-qt [arm64] (jammy-proposed/universe) [1.2.4-1] (no packageset)11:49
-queuebot:#ubuntu-release- New binary: yubikey-manager-qt [armhf] (jammy-proposed/universe) [1.2.4-1] (no packageset)11:49
-queuebot:#ubuntu-release- New binary: yubikey-manager-qt [s390x] (jammy-proposed/universe) [1.2.4-1] (no packageset)12:34
xnoxsil2100:  are you around for simple SRU actions? (1 reject, and 2 to consider for sru-release)13:32
xnoxhttps://launchpad.net/ubuntu/focal/+queue?queue_state=1&queue_text=curl the second one (older one), which was uploaded at 17:.. GMT needs to be rejected, it FTBFS and got fixed up by the new one in the queue.13:33
xnoxand then from https://people.canonical.com/~ubuntu-archive/pending-sru.html dwarves-dfsg and openssl from me are ready to release.13:34
tjaaltonxnox: looking14:03
-queuebot:#ubuntu-release- Unapproved: rejected curl [source] (focal-proposed) [7.68.0-1ubuntu2.8]14:03
-queuebot:#ubuntu-release- Unapproved: accepted wget [source] (focal-proposed) [1.20.3-1ubuntu2]14:20
-queuebot:#ubuntu-release- Unapproved: accepted curl [source] (focal-proposed) [7.68.0-1ubuntu2.8]14:24
sil2100xnox: o/14:32
sil2100xnox: I'll do SRU releases in a bit, didn't go through it yet - curl and wget I just reviewed for focal14:32
tjaaltonI released openssl and dwarves-dfsg14:43
xnoxtjaalton:  thank you!14:44
xnoxsil2100:  thank you!14:44
sil2100yaay14:52
sil2100yw!14:52
-queuebot:#ubuntu-release- New: accepted oem-stella.cmit-rattata-meta [sync] (focal-proposed) [20.04~ubuntu1]14:59
-queuebot:#ubuntu-release- New binary: oem-stella.cmit-rattata-meta [amd64] (focal-proposed/none) [20.04~ubuntu1] (canonical-oem-metapackages)15:04
-queuebot:#ubuntu-release- New: accepted oem-stella.cmit-rattata-meta [amd64] (focal-proposed) [20.04~ubuntu1]15:10
=== sforshee_ is now known as sforshee
juliankWe are now back at the normal 40 ppc64el autopkgtest workers from the temporary raise to 6016:53
vorlontumbleweed: tracker> reminder that we generally don't need to add force-badtest hints manually now, as opposed to doing baseline retests with trigger=migration-reference/0 and letting britney figure it out16:55
tumbleweedah, is that how we got the list cut down so much16:58
vorlonyes :)17:01
vorlonwhich improves britney runtime as well \o/17:01
tumbleweedtriggered migration reference tests for it17:01
vorlonI did also ;)17:01
laneyWonder how we can build a view of the baseline status. I'd love to know if it's getting better or worse over time.17:05
laneyGuess that relies on continuous retesting to have the data17:05
julianklaney: well, we can tag baseline tests17:10
julianklaney: then we can do rolling 30 day average over baseline tests17:11
vorlonI don't think we want to measure percent of baseline tests failed in the past 30 days17:12
vorlonI think we want to measure percent of all baseline tests that are pass/fail17:12
juliankhmm17:12
vorlonbecause the rate at which we test can vary17:12
julianktrue17:12
juliankbut I guess that's a lot harder17:13
juliankNeed to add an sqlite query and then send data to influxdb17:13
juliankmight want to tag baseline tests in the dtabase then, to avoid having to use LIKE '%migration-reference/0%' to find them slowly :D17:14
juliankvorlon: Regarding baseline expiry, I understand not wanting to fight for resources, but on the other hand I think it makes the results more consistent if we ensure that we only consider baselines that are of certain recentness17:15
juliankAlso, we can abort the normal baseline retest once we issue an expiry based once17:15
julianksuch that effectively, things only move up in the queue17:15
juliankIt means packages that get triggered more often might get tested more often, as they'd jump ahead of the retest queue if needed17:17
juliankThe odd thing about baseline retesting is the cron job needs to run from the web worker right now17:19
juliankas we need the database to figure out which packages we have tests for :)17:19
juliankvorlon: Oh, and I guess setting an expiry can be useful for stable releases, but also weird17:19
vorlonjuliank: should be able to do = 'migration-reference/0' instead of a LIKE that misses the index :)17:20
vorlonso yeah, we could certainly have a britney-triggered baseline retest cancel the cronned one17:21
juliankvorlon: So we have triggers as their own field, but not an index17:21
vorlonI just don't think it's worth the added complexity17:21
vorlonjuliank: "not an index" is solved easily enough :)17:21
juliankvorlon: it's a bit problematic, as that index would be large, and we offer the file for download17:22
juliankindexing a bool field would be smaller I suppose17:22
juliankWe could delete indexes and vaccuum the published databases too17:23
juliankit would save space17:23
juliankI vaccuumed the main db on one worker so it's now 1.8GB while the other worker has 2.2GB17:23
juliank:D17:23
juliank(unfortunately it wrote all that to the wal journal, so just consumed 2GB more; that's why I did not do the other)17:24
juliank(after removing groovy that was)17:24
juliankthe baseline cronjob is a bit hard to write if we want to do it nicely17:25
juliankthe easy way is to just queue all tests once the queues are empty, try that hourly or so17:26
juliankbut rabbitmq then starts getting funky and lies to clients about queue contents while that's running17:26
juliankso optimally, you'd like rate limit the queueing17:26
juliankhmm I can just sleep in the cron job17:26
tumbleweedcan you limit the quantity of items queued to avoid flooding the queues?17:27
juliankI can keep a log of what tests are pending and then check them off once they are done17:28
juliankand then I can issue in small batches every couple minutes17:28
juliankbut it's harder vs just filling the queue when it's empty17:28
tumbleweedyeah17:28
juliankwhat does not work is filling up the queue with remaining items so it always has a fixed size, as rabbitmq sometimes lies, as mentioned17:29
laneydid you discard the idea of using priorities?17:29
julianklaney: no, this is just a question of how to queue the tests without borking rabbitmq17:30
tumbleweeddoes it actually bork, or just give an incomplete picture?17:30
julianklaney: because if you submit too many items too fast it will start acting up when other clients query the queues17:30
julianklaney: it gives an incomplete picture, yes17:31
laneyif you use another queue?17:31
laneynormal / upstream / huge / baseline17:31
juliankI have not checked actually17:31
juliankBut what this means is I can't check the queeu contents and then fill it up to a 100 tests or so17:31
juliankMaybe if I add caching17:32
juliankbecause if we have like a constant low number of tests in that queeu, we don't need to change anything else like amqp-cache and web frontend display17:32
juliankwe'd have to exclude those queues from the web frontend if we had 20k tests in them every week17:33
laneyyeah I'd not really expected to see those, at least not the queued ones (running ones, arguably yes you should)17:33
tumbleweedit would be useful to see the queues for manual tasks17:34
tumbleweedoften several people re-test the same package17:34
juliankmanual baseline retests land on the normal queue though, not the automatic baseline retest queue17:34
juliankmost likely :D17:35
tumbleweedyeah, that works17:35
juliankI guess we can just dump pending tests in a/the database17:40
juliankthen we can look at which tests we know of as pending, and check for new results like britney does17:40
juliankand do a continous-length baseline retest queue that way17:41
juliankwith the simple approach of "dump all when queue is empty" we end up with weird behavior if the process fails during queueing17:42
* juliank wants to build robust software17:43
laneystart by HAing the rabbitmq then :-)17:43
julianklaney: ah people say smaller queue lengths are more reliable anyway17:45
tumbleweedmy experience of HA rabbit hasn't been amazing17:46
julianklaney: but yeah, rabbitmq should maybe be a cluster of two17:46
julianktumbleweed: my experience of normal rabbit has not been amazing eihter17:46
julianktumbleweed: thing just grows CPU usage over time until it eventually locks up somewhat and needs to be restarted17:46
tumbleweedat least I haven't run into that17:46
laneyit OOMs from time to time as well, kind of annoying17:47
laneywe had to enable all the disk persistence otherwise queues were getting dumped17:47
juliankit's fun17:47
juliankso my understanding of people who know more about rabbitmq is that it's best if we keep the queues small rather than have potentially all tests queued at the same time17:48
juliank> In RabbitMQ 3.6 and larger, a feature called lazy queues was added. Lazy queues are queues where the messages are automatically stored to disk. Messages are only loaded into memory when they are needed.17:49
juliankwonder if we use those17:49
juliankwould avoid the OOMs, one would assume17:49
juliankhuge queue might benefit from that at the very least17:50
-queuebot:#ubuntu-release- New binary: yubikey-manager-qt [riscv64] (jammy-proposed/universe) [1.2.4-1] (no packageset)17:51
juliankrabbitmqctl set_policy Lazy "huge" '{"queue-mode":"lazy"}' --apply-to queues17:51
juliankugh but also it does not make too much sense because we read the entire queues all the time from the web frontends17:52
cjwatsonjuliank: at some point a while back I worked out that this was a kernel bug17:57
cjwatsonrabbitmq itself had reasonable memory use but the kernel was fragmenting itself to death, IIRC17:57
-queuebot:#ubuntu-release- New: accepted ksyntax-highlighting [amd64] (jammy-proposed) [5.87.0-0ubuntu1]18:03
-queuebot:#ubuntu-release- New: accepted ksyntax-highlighting [armhf] (jammy-proposed) [5.87.0-0ubuntu1]18:03
-queuebot:#ubuntu-release- New: accepted ksyntax-highlighting [riscv64] (jammy-proposed) [5.87.0-0ubuntu1]18:03
-queuebot:#ubuntu-release- New: accepted ksyntax-highlighting [arm64] (jammy-proposed) [5.87.0-0ubuntu1]18:03
-queuebot:#ubuntu-release- New: accepted ksyntax-highlighting [s390x] (jammy-proposed) [5.87.0-0ubuntu1]18:03
-queuebot:#ubuntu-release- New: accepted ksyntax-highlighting [ppc64el] (jammy-proposed) [5.87.0-0ubuntu1]18:03
juliankcjwatson: whoa18:11
cjwatsonNot sure I ever tracked it down all the way though, because at the time we were running rabbitmq on an old Ubuntu release and it made more sense to upgrade first18:21
cjwatsonSeemed like unreclaimable slabs IIRC18:21
cjwatsonjuliank: Ah right, if memory serves we redeployed rabbitmq-server on focal (previously trusty) and it stopped being a problem18:22
cjwatsonjuliank: https://portal.admin.canonical.com/C128584/18:23
cjwatsonWhat series are you running it on at the moment?18:23
vorlondoko: gcc-arm-none-eabi-source is in the NBS report, but libstdc++-arm-none-eabi build-depends on it, and this doesn't seem to be a false-positive?19:30
-queuebot:#ubuntu-release- New: accepted glance-tempest-plugin [amd64] (jammy-proposed) [0.2.0-2]19:38
-queuebot:#ubuntu-release- New: accepted trove-tempest-plugin [amd64] (jammy-proposed) [1.3.0-2]19:38
-queuebot:#ubuntu-release- New: accepted yubikey-manager-qt [arm64] (jammy-proposed) [1.2.4-1]19:38
-queuebot:#ubuntu-release- New: accepted yubikey-manager-qt [ppc64el] (jammy-proposed) [1.2.4-1]19:38
-queuebot:#ubuntu-release- New: accepted yubikey-manager-qt [s390x] (jammy-proposed) [1.2.4-1]19:38
vorloncjwatson: autopkgtest rabbit is currently on focal also19:38
-queuebot:#ubuntu-release- New: accepted python-elgato-streamdeck [amd64] (jammy-proposed) [0.8.5+ds-2]19:38
-queuebot:#ubuntu-release- New: accepted yubikey-manager-qt [armhf] (jammy-proposed) [1.2.4-1]19:38
-queuebot:#ubuntu-release- New: accepted yubikey-manager-qt [amd64] (jammy-proposed) [1.2.4-1]19:38
-queuebot:#ubuntu-release- New: accepted yubikey-manager-qt [riscv64] (jammy-proposed) [1.2.4-1]19:38
-queuebot:#ubuntu-release- New: accepted python-promise [amd64] (jammy-proposed) [2.3.0-1]19:38
=== jpeisach is now known as ItzSwirlz
juliankvorlon: i wish the workers had access to the results database, then we could have flags on tests and the workers could just ack and ignore baseline retests if we already had one in the past 7 days :D21:43
juliankno need to play with queues and all21:44
juliankjust add {"only_if_not_run_since": "2021-11-08 21:44"}21:44
juliankI sometimes wonder if britney should submit the baseline retesting tests. If it hasn't seen a baseline reference test in 7 days -> submit a new one; for each package in the archivee21:47
juliankbritney has all the logic in there to deal with de-duplicating requests and stuff already21:47
juliank(and it only has one instance, when running on autopkgtest, you always need to coordinate because everything exists twice :D)21:48
juliankbut oh well, the web nodes have elected a leader, so everything ,ight be alright21:49
vorlonjuliank: we shouldn't add more work to the inner loop of proposed-migration21:56
juliankvorlon: yeah I understand that21:56
juliankso what I can do if I want to be leaderless21:57
juliankis submit all test requests to a new queue dedup-<queue name>21:58
juliankwhich then is processed by only one web node, exclusively21:58
juliankand then that really schedules tests and writes pending tests to a json like britney and ignores new ones21:58
juliankbut this still fails if that web unit goes down21:59
juliankwish we had a distributed sql21:59
juliankthere is another weird hack for a distributed small database22:00
juliankdump it to json22:00
juliankdefine an exclusive consumer queue in rabbitmq22:00
juliankread item in your exclusive consumer, add new request, write item back, close consumer22:00
juliankbasically it's a single distributed locked json file :D22:01
bdmurrayvorlon: Why is app-install-data-partner still in main?22:28
vorlonbdmurray: well I haven't actually announced partner deprecation publicly yet, have I :)22:30
vorlonbdmurray: seems it should be dropped entirely22:30
vorlon(and unseeded)22:32
juliankoh silly me should just write the baseline retester to always request tests for packages who have not run migration-reference tests in 7 days22:35
juliank(it then deduplicates if the test is recorded as pending)22:35
juliankAnd just manually hack in which web worker issues those tests by virtue of having that pending tests json file exist22:36
juliankvorlon: laney I believe consumer priorities are the answer to make sure the standard queues get processed first: https://www.rabbitmq.com/consumer-priority.html22:53
juliankI'll ask in the ML to be sure22:56
juliank(https://groups.google.com/u/1/g/rabbitmq-users/c/ZRI11erf4zk)22:58
-queuebot:#ubuntu-release- New binary: libnetconf2 [amd64] (jammy-proposed/universe) [2.0.24-1] (no packageset)23:20
-queuebot:#ubuntu-release- New binary: proglog [amd64] (jammy-proposed/none) [0.1.9-1] (no packageset)23:20
-queuebot:#ubuntu-release- New binary: critnib [amd64] (jammy-proposed/universe) [1.0-1] (no packageset)23:21
-queuebot:#ubuntu-release- New binary: tml [amd64] (jammy-proposed/universe) [0.4.0-1] (no packageset)23:21
-queuebot:#ubuntu-release- New binary: ntfs2btrfs [amd64] (jammy-proposed/universe) [20210523-1] (no packageset)23:21
-queuebot:#ubuntu-release- New binary: zydis [amd64] (jammy-proposed/universe) [3.2.1-1] (no packageset)23:21
-queuebot:#ubuntu-release- New binary: snowflake [amd64] (jammy-proposed/universe) [1.1.0-1] (no packageset)23:21
tumbleweedhrm, are DNS queries blocked from autopkgtests? Re aiodns failing23:22
-queuebot:#ubuntu-release- New binary: bcm2835 [arm64] (jammy-proposed/universe) [1.68+ds-1] (no packageset)23:22
julianktumbleweed: it worked fine at 18:54:19 UTC23:23
-queuebot:#ubuntu-release- New binary: bcm2835 [amd64] (jammy-proposed/universe) [1.68+ds-1] (no packageset)23:24
-queuebot:#ubuntu-release- New binary: critnib [arm64] (jammy-proposed/universe) [1.0-1] (no packageset)23:24
-queuebot:#ubuntu-release- New binary: zydis [arm64] (jammy-proposed/universe) [3.2.1-1] (no packageset)23:24
-queuebot:#ubuntu-release- New binary: bcm2835 [armhf] (jammy-proposed/universe) [1.68+ds-1] (no packageset)23:24
-queuebot:#ubuntu-release- New binary: libnetconf2 [ppc64el] (jammy-proposed/universe) [2.0.24-1] (no packageset)23:24
-queuebot:#ubuntu-release- New binary: libnetconf2 [armhf] (jammy-proposed/universe) [2.0.24-1] (no packageset)23:25
-queuebot:#ubuntu-release- New binary: sysrepo [arm64] (jammy-proposed/universe) [2.0.53-1] (no packageset)23:25
-queuebot:#ubuntu-release- New binary: zydis [armhf] (jammy-proposed/universe) [3.2.1-1] (no packageset)23:25
-queuebot:#ubuntu-release- New binary: ntfs2btrfs [ppc64el] (jammy-proposed/universe) [20210523-1] (no packageset)23:25
-queuebot:#ubuntu-release- New binary: sysrepo [ppc64el] (jammy-proposed/universe) [2.0.53-1] (no packageset)23:25
-queuebot:#ubuntu-release- New binary: libnetconf2 [arm64] (jammy-proposed/universe) [2.0.24-1] (no packageset)23:26
-queuebot:#ubuntu-release- New binary: rhonabwy [armhf] (jammy-proposed/universe) [1.1.1-1] (no packageset)23:26
-queuebot:#ubuntu-release- New binary: bcm2835 [ppc64el] (jammy-proposed/universe) [1.68+ds-1] (no packageset)23:28
-queuebot:#ubuntu-release- New binary: sysrepo [armhf] (jammy-proposed/universe) [2.0.53-1] (no packageset)23:28
-queuebot:#ubuntu-release- New binary: ksh93u+m [s390x] (jammy-proposed/universe) [1.0.0~beta.1-1] (no packageset)23:28
-queuebot:#ubuntu-release- New binary: aws-nuke [amd64] (jammy-proposed/universe) [2.16.0-1] (no packageset)23:29
-queuebot:#ubuntu-release- New binary: aws-nuke [ppc64el] (jammy-proposed/universe) [2.16.0-1] (no packageset)23:30
-queuebot:#ubuntu-release- New binary: zycore-c [arm64] (jammy-proposed/universe) [1.1.0-1] (no packageset)23:30
-queuebot:#ubuntu-release- New binary: ksh93u+m [ppc64el] (jammy-proposed/universe) [1.0.0~beta.1-1] (no packageset)23:30
-queuebot:#ubuntu-release- New binary: ntfs2btrfs [arm64] (jammy-proposed/universe) [20210523-1] (no packageset)23:30
-queuebot:#ubuntu-release- New binary: tml [arm64] (jammy-proposed/universe) [0.4.0-1] (no packageset)23:31
-queuebot:#ubuntu-release- New binary: ntfs2btrfs [armhf] (jammy-proposed/universe) [20210523-1] (no packageset)23:31
-queuebot:#ubuntu-release- New binary: tml [armhf] (jammy-proposed/universe) [0.4.0-1] (no packageset)23:31
-queuebot:#ubuntu-release- New binary: sysrepo [s390x] (jammy-proposed/universe) [2.0.53-1] (no packageset)23:31
-queuebot:#ubuntu-release- New binary: bcm2835 [s390x] (jammy-proposed/universe) [1.68+ds-1] (no packageset)23:32
-queuebot:#ubuntu-release- New binary: snowflake [ppc64el] (jammy-proposed/universe) [1.1.0-1] (no packageset)23:33
-queuebot:#ubuntu-release- New binary: snowflake [armhf] (jammy-proposed/universe) [1.1.0-1] (no packageset)23:33
-queuebot:#ubuntu-release- New binary: critnib [s390x] (jammy-proposed/universe) [1.0-1] (no packageset)23:34
-queuebot:#ubuntu-release- New binary: snowflake [s390x] (jammy-proposed/universe) [1.1.0-1] (no packageset)23:34
-queuebot:#ubuntu-release- New binary: ntfs2btrfs [s390x] (jammy-proposed/universe) [20210523-1] (no packageset)23:34
-queuebot:#ubuntu-release- New binary: tml [s390x] (jammy-proposed/universe) [0.4.0-1] (no packageset)23:34
-queuebot:#ubuntu-release- New binary: aws-nuke [s390x] (jammy-proposed/universe) [2.16.0-1] (no packageset)23:37
-queuebot:#ubuntu-release- New binary: libnetconf2 [riscv64] (jammy-proposed/universe) [2.0.24-1] (no packageset)23:37
-queuebot:#ubuntu-release- New binary: aws-nuke [arm64] (jammy-proposed/universe) [2.16.0-1] (no packageset)23:38
-queuebot:#ubuntu-release- New binary: ksh93u+m [amd64] (jammy-proposed/universe) [1.0.0~beta.1-1] (no packageset)23:38
-queuebot:#ubuntu-release- New binary: aws-nuke [armhf] (jammy-proposed/universe) [2.16.0-1] (no packageset)23:40
-queuebot:#ubuntu-release- New binary: ksh93u+m [armhf] (jammy-proposed/universe) [1.0.0~beta.1-1] (no packageset)23:40
-queuebot:#ubuntu-release- New: accepted aws-nuke [arm64] (jammy-proposed) [2.16.0-1]23:40
-queuebot:#ubuntu-release- New: accepted ksh93u+m [armhf] (jammy-proposed) [1.0.0~beta.1-1]23:40
-queuebot:#ubuntu-release- New: accepted aws-nuke [armhf] (jammy-proposed) [2.16.0-1]23:40
-queuebot:#ubuntu-release- New: accepted aws-nuke [s390x] (jammy-proposed) [2.16.0-1]23:41
-queuebot:#ubuntu-release- New: accepted critnib [s390x] (jammy-proposed) [1.0-1]23:41
-queuebot:#ubuntu-release- New: accepted libnetconf2 [riscv64] (jammy-proposed) [2.0.24-1]23:41
-queuebot:#ubuntu-release- New: accepted snowflake [armhf] (jammy-proposed) [1.1.0-1]23:41
-queuebot:#ubuntu-release- New: accepted snowflake [s390x] (jammy-proposed) [1.1.0-1]23:41
-queuebot:#ubuntu-release- New: accepted bcm2835 [s390x] (jammy-proposed) [1.68+ds-1]23:41
-queuebot:#ubuntu-release- New: accepted ntfs2btrfs [s390x] (jammy-proposed) [20210523-1]23:41
-queuebot:#ubuntu-release- New: accepted tml [s390x] (jammy-proposed) [0.4.0-1]23:41
-queuebot:#ubuntu-release- New: accepted ksh93u+m [amd64] (jammy-proposed) [1.0.0~beta.1-1]23:41
-queuebot:#ubuntu-release- New: accepted snowflake [ppc64el] (jammy-proposed) [1.1.0-1]23:41
-queuebot:#ubuntu-release- New: accepted aws-nuke [amd64] (jammy-proposed) [2.16.0-1]23:41
-queuebot:#ubuntu-release- New: accepted ksh93u+m [ppc64el] (jammy-proposed) [1.0.0~beta.1-1]23:41
-queuebot:#ubuntu-release- New: accepted ntfs2btrfs [armhf] (jammy-proposed) [20210523-1]23:41
-queuebot:#ubuntu-release- New: accepted tml [arm64] (jammy-proposed) [0.4.0-1]23:41
-queuebot:#ubuntu-release- New: accepted zycore-c [arm64] (jammy-proposed) [1.1.0-1]23:41
-queuebot:#ubuntu-release- New: accepted aws-nuke [ppc64el] (jammy-proposed) [2.16.0-1]23:41
-queuebot:#ubuntu-release- New: accepted sysrepo [s390x] (jammy-proposed) [2.0.53-1]23:41
-queuebot:#ubuntu-release- New: accepted ntfs2btrfs [arm64] (jammy-proposed) [20210523-1]23:41
-queuebot:#ubuntu-release- New: accepted tml [armhf] (jammy-proposed) [0.4.0-1]23:41
-queuebot:#ubuntu-release- New: accepted bcm2835 [ppc64el] (jammy-proposed) [1.68+ds-1]23:41
-queuebot:#ubuntu-release- New: accepted libnetconf2 [arm64] (jammy-proposed) [2.0.24-1]23:42
-queuebot:#ubuntu-release- New: accepted rhonabwy [armhf] (jammy-proposed) [1.1.1-1]23:42
-queuebot:#ubuntu-release- New: accepted sysrepo [armhf] (jammy-proposed) [2.0.53-1]23:42
-queuebot:#ubuntu-release- New: accepted ksh93u+m [s390x] (jammy-proposed) [1.0.0~beta.1-1]23:42
-queuebot:#ubuntu-release- New: accepted sysrepo [arm64] (jammy-proposed) [2.0.53-1]23:42
-queuebot:#ubuntu-release- New: accepted ntfs2btrfs [ppc64el] (jammy-proposed) [20210523-1]23:42
-queuebot:#ubuntu-release- New: accepted sysrepo [ppc64el] (jammy-proposed) [2.0.53-1]23:42
-queuebot:#ubuntu-release- New: accepted bcm2835 [amd64] (jammy-proposed) [1.68+ds-1]23:42
-queuebot:#ubuntu-release- New: accepted bcm2835 [armhf] (jammy-proposed) [1.68+ds-1]23:42
-queuebot:#ubuntu-release- New: accepted libnetconf2 [armhf] (jammy-proposed) [2.0.24-1]23:42
-queuebot:#ubuntu-release- New: accepted snowflake [amd64] (jammy-proposed) [1.1.0-1]23:42
-queuebot:#ubuntu-release- New: accepted zydis [armhf] (jammy-proposed) [3.2.1-1]23:42
-queuebot:#ubuntu-release- New: accepted bcm2835 [arm64] (jammy-proposed) [1.68+ds-1]23:42
-queuebot:#ubuntu-release- New: accepted libnetconf2 [ppc64el] (jammy-proposed) [2.0.24-1]23:42
-queuebot:#ubuntu-release- New: accepted critnib [arm64] (jammy-proposed) [1.0-1]23:42
-queuebot:#ubuntu-release- New: accepted zydis [arm64] (jammy-proposed) [3.2.1-1]23:42
-queuebot:#ubuntu-release- New: accepted critnib [amd64] (jammy-proposed) [1.0-1]23:42
-queuebot:#ubuntu-release- New: accepted ntfs2btrfs [amd64] (jammy-proposed) [20210523-1]23:42
-queuebot:#ubuntu-release- New: accepted tml [amd64] (jammy-proposed) [0.4.0-1]23:42
-queuebot:#ubuntu-release- New: accepted libnetconf2 [amd64] (jammy-proposed) [2.0.24-1]23:43
-queuebot:#ubuntu-release- New: accepted zydis [amd64] (jammy-proposed) [3.2.1-1]23:43
-queuebot:#ubuntu-release- New: accepted proglog [amd64] (jammy-proposed) [0.1.9-1]23:43
tumbleweedjuliank: one of the changes in 3.0.0-1 was to explicitly query 8.8.8.823:46
tumbleweedhttps://salsa.debian.org/python-team/packages/aiodns/-/commit/47a029f34e3a80d4f2610549c983d0810ab1e19e#5f0316cda8d9317a3982eee7fe909a0b0de59630_17_1723:46
ubottuCommit 47a029f in python-team/packages/aiodns "New upstream version 3.0.0"23:46
-queuebot:#ubuntu-release- New binary: rhonabwy [riscv64] (jammy-proposed/universe) [1.1.1-1] (no packageset)23:54

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!