*** richm has quit IRC | 00:34 | |
*** dtx00ff has quit IRC | 00:36 | |
*** lpmulligan has joined #openstack-dns | 00:47 | |
*** dguerri` is now known as dguerri | 01:29 | |
*** CTWill has joined #openstack-dns | 01:29 | |
CTWill | Has anyone had experience installing designate on a control node? | 01:30 |
---|---|---|
*** lpmulligan has quit IRC | 01:35 | |
*** stanzgy has joined #openstack-dns | 01:35 | |
*** bitblt has quit IRC | 01:45 | |
*** cing has joined #openstack-dns | 02:14 | |
*** cing has quit IRC | 02:14 | |
*** cing has joined #openstack-dns | 02:14 | |
*** dguerri is now known as dguerri` | 02:17 | |
*** CTWill has quit IRC | 02:21 | |
*** dguerri` is now known as dguerri | 02:22 | |
*** dguerri is now known as dguerri` | 02:25 | |
*** dguerri` is now known as dguerri | 02:30 | |
*** dguerri is now known as dguerri` | 02:34 | |
*** rbrooker has quit IRC | 02:56 | |
*** jmcbride has quit IRC | 03:14 | |
*** rudrajit has joined #openstack-dns | 03:20 | |
*** crc32 has joined #openstack-dns | 03:21 | |
*** rudrajit_ has quit IRC | 03:23 | |
*** pksingh has joined #openstack-dns | 04:29 | |
pksingh | ekarlso : hi there? | 04:29 |
*** rudrajit has quit IRC | 04:40 | |
openstackgerrit | sonu proposed openstack/designate: Fix for ttl values https://review.openstack.org/199046 | 05:20 |
*** rudrajit has joined #openstack-dns | 05:27 | |
*** rudrajit has quit IRC | 05:35 | |
*** rudrajit has joined #openstack-dns | 05:35 | |
*** rudrajit has quit IRC | 05:37 | |
*** rudrajit has joined #openstack-dns | 05:37 | |
*** fawadkhaliq has joined #openstack-dns | 05:45 | |
*** ig0r_ has joined #openstack-dns | 05:52 | |
*** ig0r__ has quit IRC | 05:55 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/designate: Imported Translations from Transifex https://review.openstack.org/199894 | 06:13 |
*** crc32 has quit IRC | 06:23 | |
openstackgerrit | Pradeep Kumar Singh proposed openstack/designate: Handle unhandled exception in dnsutils.py for py3 https://review.openstack.org/198935 | 06:31 |
*** dguerri` is now known as dguerri | 06:40 | |
*** dguerri is now known as dguerri` | 06:46 | |
*** rudrajit has quit IRC | 06:53 | |
*** nihilifer has joined #openstack-dns | 06:58 | |
*** hetii has joined #openstack-dns | 07:02 | |
hetii | Hello :) | 07:03 |
pksingh | hetii, Hi :) | 07:04 |
ekarlso | morning :P | 08:03 |
pksingh | good morning!! | 08:06 |
federico3 | hi | 08:20 |
*** l6unchpad has joined #openstack-dns | 08:40 | |
openstackgerrit | Endre Karlson proposed openstack/designate: Increase coverage of RRset tests https://review.openstack.org/184545 | 08:56 |
*** l6unchpad has quit IRC | 09:01 | |
*** nihilifer has quit IRC | 09:13 | |
*** jordanP has joined #openstack-dns | 09:16 | |
*** l6unchpad has joined #openstack-dns | 09:17 | |
*** rudrajit has joined #openstack-dns | 09:20 | |
*** fawadkhaliq has quit IRC | 09:22 | |
hetii | one question: between juno and kilo version of designate was a big jump | 09:24 |
*** rudrajit has quit IRC | 09:24 | |
hetii | but now I wonder about one aspect, designate is mostly a just a event consumer and can works standalone | 09:24 |
hetii | so why not to use kilo version of designate with juno infrastructure ? | 09:25 |
*** pksingh has quit IRC | 09:25 | |
hetii | what in such configuration will not works ? | 09:25 |
*** nihilifer has joined #openstack-dns | 09:55 | |
hetii | Kiall: hi, are you here? | 09:55 |
hetii | I have a question about: self.storage.update_record, why its used in _delete_record_in_storage instead just record = self.storage.delete_record(context, record_id) | 09:56 |
hetii | ? | 09:56 |
hetii | by some reason my records are not deleted :/ | 09:56 |
hetii | even here in line 1561 we have it https://github.com/openstack/designate/blob/master/designate/central/service.py | 09:58 |
hetii | is it a bug or decition what to do is made there by setting record.action flag ? | 09:58 |
*** stanzgy has quit IRC | 10:10 | |
Kiall | hetii: heya | 10:18 |
*** km has quit IRC | 10:19 | |
*** km has joined #openstack-dns | 10:20 | |
Kiall | hetii: because, inside _update_record_in_storage we do 2 different DB updates, so they need to be wrapped inside a transaction together. If we make the transaction cover the entire update_record method, then that concurrency issue you're hitting in Juno comes back! | 10:20 |
Kiall | L1495 of the master branch designate/central/service.py will trigger it.. and a similar call to the backend class in Juno would do it too | 10:21 |
hetii | well in my case I don`t have a pool_manager_api | 10:22 |
*** fawadkhaliq has joined #openstack-dns | 10:22 | |
*** fawadkhaliq has quit IRC | 10:23 | |
*** fawadkhaliq has joined #openstack-dns | 10:23 | |
hetii | and there in _delete_record_in_storage() we have self.storage.update_record() not self.update_record() | 10:25 |
hetii | also I check this update code and don`t see where/how it can delete a row in db | 10:29 |
Kiall | hetii: right, in Juno - there's self.backend.update_record(), which will tigger it | 10:31 |
Kiall | Lot's of the "deletes" will actually do a SQL UPDATE setting the deleted and deleted_at columns | 10:32 |
hetii | Kiall: but I don`t talk about self.backend.update() callback, this part works for me, so when I delete a record its erased from my backend plugin. The point is that this record still exist in local designate database | 10:34 |
hetii | so its a self.storage* issue | 10:34 |
Kiall | Yes, it will still exist - but with the deleted flag set, so shouldn't show up in the API after that | 10:34 |
Kiall | Periodiically, those should be cleared out.. | 10:35 |
hetii | hmm \ | 10:35 |
Kiall | Oh | 10:35 |
Kiall | actually | 10:35 |
Kiall | that's domains | 10:35 |
Kiall | not records/recordsets | 10:35 |
hetii | well... in my case they are in db and when create a second record than got exception that already exist | 10:36 |
hetii | also in juno record object have no "action" atribbute | 10:36 |
Kiall | Yea, action is a new thing introduced with pool manager in Kilo | 10:36 |
hetii | so suppose all logic that thouch this attribute is also not implemented | 10:36 |
Kiall | Yes, that's part of Kilo changes to make things async - though pool manager | 10:37 |
hetii | ok but still why I see those record in juno if you say that they should not be visible | 10:38 |
hetii | btw also wonder whats the purpose of keeping data in db that are no longer needed | 10:38 |
Kiall | I confident that bug doesn't exist in stock juno! deleting records is something we test :) Could the backport have missed a call? let me check that pastebin.. or have you updated furthur? | 10:38 |
hetii | this is my current file of service.py: http://demo.ovh.eu/download/20341324cf25243dabe0b9b39fe3d072/service.py | 10:40 |
hetii | and lockutils that are not exist in juno: http://demo.ovh.eu/download/f20b4d7c100d75d5e25786fb69a0d6d4/lockutils.py | 10:41 |
Kiall | lol .. LOG.debug("WTF ??????") <-- I usually use more swear words | 10:44 |
Kiall | ;) | 10:44 |
Kiall | So - When you call delete_recordset, surely that's exploding as your doing the action/status field stuff (which can be just removed in Juno) | 10:45 |
Kiall | same in delete_record_from_storage | 10:45 |
hetii | ye, but suppose they are ingonerd anyway ? | 10:46 |
Kiall | Nope, that should cause issues | 10:47 |
Kiall | Try these two: http://paste.openstack.org/show/358258/ | 10:47 |
Kiall | (should - it might not I guess!) | 10:47 |
hetii | sure, if I use record = self.storage.delete_record(context, record.id) instead update then it work | 10:50 |
hetii | but I thought it was to use update | 10:50 |
hetii | so you say that I need to rid from it all record.status/record.action/record.serial ? | 10:51 |
Kiall | In the delete? Nope, that's not the right way (I was mistaken a few mins ago) | 10:51 |
Kiall | Yes - status and action don't exist or do anything in Juno, serial in that particular case, was related to more Kilo changes so was also not needed | 10:52 |
*** eandersson has joined #openstack-dns | 10:56 | |
hetii | ok so I read all code that was related to record.status/record.action/record.serial but keep in _delete_record_in_storage call to self.storage.update_record() | 10:57 |
hetii | but still my records are not deleted | 10:57 |
hetii | and are visible in CLI | 10:58 |
hetii | when put record = self.storage.delete_record(context, record.id) instead update then looks fine | 10:58 |
hetii | but you say its not a proper way | 10:58 |
openstackgerrit | Endre Karlson proposed openstack/designate: Verify DNS changes when updating RRSet https://review.openstack.org/186717 | 11:02 |
Kiall | In Kilo, we don't delete the records at that point - we do it elsewhere. In juno, we have to do a delete there rather than an update | 11:06 |
*** fawadkhaliq has quit IRC | 11:06 | |
hetii | ahh then ok, need to change it to delete then :) | 11:06 |
hetii | ok other point that you might to help, any idea if kilo designate will works with juno ? | 11:07 |
*** fawadkhaliq has joined #openstack-dns | 11:08 | |
Kiall | Yes, Kilo (or even master) Designate should work fine with Juno OpenStack | 11:08 |
hetii | huh. ok the whats the point to do this backporting ?:") | 11:09 |
hetii | :) | 11:09 |
Kiall | Because people want Juno with their Juno clouds! | 11:10 |
hetii | what you mean by that ? | 11:11 |
Kiall | People running Juno are often more comfortable running Juno for everything - it's valid to do that! | 11:11 |
hetii | I guess its better to use latest components if he are able to works fine with old release:) | 11:11 |
hetii | yep, I see :) | 11:12 |
*** pksingh has joined #openstack-dns | 11:14 | |
pksingh | Hi Kiall , | 11:15 |
Kiall | pksingh: heya | 11:15 |
pksingh | almost all UTS are running with py3 except two files, | 11:15 |
pksingh | i am getting some problem can you please help me out | 11:16 |
Kiall | Cool! Sure.. What's still broke? | 11:16 |
pksingh | http://paste.openstack.org/show/357826/ | 11:16 |
pksingh | paste.openstack.org/show/358049 | 11:16 |
Kiall | Interesting - Looking at the NSD tests, I spot two issues offhand - neither I think is your issue though. | 11:18 |
Kiall | "class NSD4ServerStub:" <-- old style object, needs to change to.. | 11:18 |
Kiall | class NSD4ServerStub(object): | 11:19 |
Kiall | and the stub is listening on a fixed port number, so concurrency within those tests would cause issues | 11:19 |
pksingh | OK | 11:19 |
pksingh | so this is the only fix that is required? | 11:20 |
Kiall | I'm not sure, the first of those two *might* be it.. | 11:20 |
pksingh | ok i willl test with this | 11:20 |
Kiall | The second definatly isn't what you're seeing.. But is an issue, we can fix it later outside of py3 fixes | 11:20 |
openstackgerrit | Merged openstack/designate: Enable filter on blacklists & tlds https://review.openstack.org/199263 | 11:20 |
openstackgerrit | Merged openstack/designate: Imported Translations from Transifex https://review.openstack.org/199894 | 11:21 |
openstackgerrit | Merged openstack/designate: Fix for ttl values https://review.openstack.org/199046 | 11:21 |
openstackgerrit | Merged openstack/designate: Functional tests for Blacklists https://review.openstack.org/184068 | 11:21 |
Kiall | "exception ssl.SSLWantReadError | 11:21 |
Kiall | A subclass of SSLError raised by a non-blocking SSL socket when trying to read or write data, but more data needs to be received on the underlying TCP transport before the request can be fulfilled." | 11:21 |
Kiall | That's a new exception in py3.3 - I wonder if the code is doing something odd | 11:22 |
pksingh | ok | 11:23 |
Kiall | Another possibility.. 1 sec while I write it up | 11:24 |
Kiall | in the NSD4ServerStub class, try swapping the handle method for this: | 11:27 |
Kiall | .. cmon paste.openstack.org -_- | 11:27 |
Kiall | http://paste.openstack.org/show/358269/ | 11:27 |
pksingh | Ok i will test and let you know the results | 11:30 |
Kiall | pksingh: and, re the second pastebin.. Can we turn logging back on? it might tell us the issue | 11:30 |
pksingh | i investigate request.body is byte type in python3.4 | 11:31 |
pksingh | https://github.com/openstack/designate/blob/master/designate/api/v2/controllers/zones/tasks/imports.py#L73 | 11:31 |
pksingh | i tried to decode that into utf-8 but that does not helped | 11:31 |
*** l6unchpad has quit IRC | 11:35 | |
Kiall | Humm - I'm not sure.. I would have expected that to be correct. | 11:35 |
Kiall | Chances are, the real error is being masked | 11:35 |
Kiall | here https://github.com/openstack/designate/blob/master/designate/central/service.py#L2519 | 11:35 |
Kiall | can we add a LOG.exception('An unknown exception was raised during zone import') | 11:35 |
Kiall | it should log the stacktrace, assuming that's where the issue is | 11:36 |
Kiall | Oh - we also do.. | 11:36 |
Kiall | request_body = str(request_body) | 11:36 |
Kiall | That'll explode in py3, right? | 11:36 |
*** ducttape_ has joined #openstack-dns | 11:37 | |
Kiall | Yep - That might just be it | 11:37 |
Kiall | >>> foo = 'a'.encode('utf-8') | 11:37 |
Kiall | >>> foo | 11:37 |
Kiall | b'a' | 11:37 |
Kiall | >>> str(foo) | 11:37 |
Kiall | "b'a'" | 11:37 |
pksingh | if i dont decode in imports.py then the content of body is changed in central/service.py, its some list instead of some text | 11:38 |
*** cing has quit IRC | 11:39 | |
Kiall | I'm not sure I follow :) | 11:40 |
Kiall | I believe you're right to do the utf8 change in api/v2/tasks/import.py | 11:40 |
Kiall | But - I think https://github.com/openstack/designate/blob/master/designate/central/service.py#L2491 is then breaking it | 11:40 |
Kiall | (I *think* - I barely ever use py3 ;)) | 11:40 |
pksingh | yes after that i am getting something like 'byte type no method read' from dnspython3 | 11:41 |
pksingh | *'bytes type has no method read' | 11:41 |
Kiall | Humm - I wonder what dnspy3 is expecting as input then.. | 11:41 |
openstackgerrit | Merged openstack/designate: Increase coverage of RRset tests https://review.openstack.org/184545 | 11:41 |
openstackgerrit | Merged openstack/designate: Resolve one py3 compatibility issue https://review.openstack.org/199359 | 11:41 |
pksingh | i will look into these issues in coming days, by the way when can we enable py34 gates | 11:42 |
Kiall | :) | 11:42 |
pksingh | otherwise we have to repeat the changes in future, what do you think | 11:43 |
Kiall | Absolutly, once we pass a py34 gate, we'll turn it on | 11:44 |
pksingh | ok | 11:44 |
pksingh | :) | 11:44 |
pksingh | and old subunit parser error which we discussed disappeared at my end when i set DESIGNATE_SQL_DEBUG to false | 11:46 |
pksingh | i dont know what is the relation | 11:46 |
Kiall | Cool, I've been meaning to fixup that var for a while but kept forgettting :) | 11:46 |
Kiall | And - the relation is odd.. Not sure why, but it's still an issue somewhere! | 11:47 |
pksingh | btw what is the purpose of this env variable | 11:47 |
*** ducttape_ has quit IRC | 11:51 | |
Kiall | pksingh: to hide to excessive SQL logging :) | 11:54 |
*** fawadkhaliq has quit IRC | 12:22 | |
*** ducttape_ has joined #openstack-dns | 12:31 | |
*** ducttape_ has quit IRC | 12:32 | |
*** ducttape_ has joined #openstack-dns | 12:33 | |
*** kei_yama has quit IRC | 12:33 | |
*** l6unchpad has joined #openstack-dns | 12:35 | |
*** cing has joined #openstack-dns | 12:36 | |
Kiall | timsim: found the issue with leader election etc you noticed.. | 12:36 |
Kiall | Fundamental flaw buried in here ;) | 12:36 |
*** ducttape_ has quit IRC | 12:37 | |
*** l6unchpad has quit IRC | 12:41 | |
*** fawadkhaliq has joined #openstack-dns | 12:45 | |
*** pserebryakov has joined #openstack-dns | 12:48 | |
Kiall | timsim: also - workers = 2 in PM logs a trace when you Ctrl+C :/ | 13:00 |
*** fawadkhaliq has quit IRC | 13:01 | |
*** pksingh has quit IRC | 13:02 | |
*** l6unchpad has joined #openstack-dns | 13:07 | |
*** rbrooker has joined #openstack-dns | 13:13 | |
*** ducttape_ has joined #openstack-dns | 13:16 | |
*** ducttape_ has quit IRC | 13:22 | |
openstackgerrit | Kiall Mac Innes proposed openstack/designate: Default to memcache for PM cache https://review.openstack.org/200071 | 13:23 |
*** richm has joined #openstack-dns | 13:23 | |
openstackgerrit | Kiall Mac Innes proposed openstack/designate: Implement support for LeaderElections https://review.openstack.org/194705 | 13:24 |
openstackgerrit | Kiall Mac Innes proposed openstack/designate: Ensure only one pool-manager performs periodic tasks https://review.openstack.org/194626 | 13:24 |
openstackgerrit | Kiall Mac Innes proposed openstack/designate: Standup coordination during start https://review.openstack.org/200072 | 13:24 |
*** km has quit IRC | 13:24 | |
Kiall | timsim: should fix the issue | 13:29 |
Kiall | Still eyeballing the workers=2 Ctrl+C stacktrace | 13:29 |
*** hetii has quit IRC | 13:35 | |
*** johnbelamaric has joined #openstack-dns | 13:44 | |
*** ducttape_ has joined #openstack-dns | 13:51 | |
*** rbrooker has quit IRC | 13:51 | |
*** pserebryakov has quit IRC | 14:00 | |
*** pglass has joined #openstack-dns | 14:05 | |
Kiall | Ignore these please ;) | 14:08 |
openstackgerrit | Kiall Mac Innes proposed openstack/designate: Designate - Gate Canary https://review.openstack.org/200098 | 14:08 |
openstackgerrit | Kiall Mac Innes proposed openstack/designate: Designate - Gate Canary https://review.openstack.org/200099 | 14:08 |
openstackgerrit | Kiall Mac Innes proposed openstack/designate: Designate - Gate Canary https://review.openstack.org/200100 | 14:08 |
openstackgerrit | Kiall Mac Innes proposed openstack/designate: Designate - Gate Canary https://review.openstack.org/200101 | 14:08 |
openstackgerrit | Kiall Mac Innes proposed openstack/designate: Designate - Gate Canary https://review.openstack.org/200102 | 14:08 |
openstackgerrit | Kiall Mac Innes proposed openstack/designate: Designate - Gate Canary https://review.openstack.org/200103 | 14:08 |
openstackgerrit | Kiall Mac Innes proposed openstack/designate: Designate - Gate Canary https://review.openstack.org/200104 | 14:08 |
openstackgerrit | Kiall Mac Innes proposed openstack/designate: Designate - Gate Canary https://review.openstack.org/200105 | 14:08 |
openstackgerrit | Kiall Mac Innes proposed openstack/designate: Designate - Gate Canary https://review.openstack.org/200106 | 14:08 |
openstackgerrit | Kiall Mac Innes proposed openstack/designate: Designate - Gate Canary https://review.openstack.org/200107 | 14:08 |
*** jmcbride has joined #openstack-dns | 14:09 | |
*** jhova has joined #openstack-dns | 14:09 | |
openstackgerrit | Mimi Lee proposed openstack/designate: Add support for Host header in REST queries https://review.openstack.org/199744 | 14:09 |
*** l6unchpad has quit IRC | 14:16 | |
*** cing has quit IRC | 14:19 | |
*** lpmulligan has joined #openstack-dns | 14:36 | |
*** nihilifer has quit IRC | 14:39 | |
*** l6unchpad has joined #openstack-dns | 14:51 | |
*** mlavalle has joined #openstack-dns | 14:56 | |
*** jmcbride has quit IRC | 15:01 | |
*** jmcbride has joined #openstack-dns | 15:02 | |
*** csoukup has joined #openstack-dns | 15:02 | |
timsim | It does fix the issue Kiall :) | 15:08 |
openstackgerrit | Endre Karlson proposed openstack/designate: Verify DNS changes when updating RRSet https://review.openstack.org/186717 | 15:16 |
*** jmcbride has quit IRC | 15:17 | |
*** jmcbride has joined #openstack-dns | 15:17 | |
Kiall | timsim: excellent :) | 15:22 |
Kiall | and 3 of 10 of my canary reviews failed -_- All 3 on powerdns gate | 15:23 |
timsim | :/ | 15:24 |
timsim | Are you still looking into the stack trace when you C-c or do you want to merge these? | 15:25 |
*** ducttape_ has quit IRC | 15:27 | |
timsim | Oh maybe the sample config should change zookeeper->kazoo? | 15:29 |
Kiall | grr ekarlso! ;) | 15:30 |
Kiall | Yea, I'll drop a patch for that now | 15:30 |
*** ducttape_ has joined #openstack-dns | 15:30 | |
openstackgerrit | Kiall Mac Innes proposed openstack/designate: Correct sample coord URL https://review.openstack.org/200149 | 15:31 |
Kiall | timsim / mugsie: ^ | 15:31 |
*** nihilifer has joined #openstack-dns | 15:34 | |
*** nihilifer has quit IRC | 15:34 | |
*** cing has joined #openstack-dns | 15:46 | |
*** ducttape_ has joined #openstack-dns | 15:51 | |
openstackgerrit | Merged openstack/designate: Standup coordination during start https://review.openstack.org/200072 | 15:59 |
*** l6unchpad has quit IRC | 16:00 | |
*** jschwarz has joined #openstack-dns | 16:00 | |
*** l6unchpad has joined #openstack-dns | 16:02 | |
openstackgerrit | Merged openstack/designate: Implement support for LeaderElections https://review.openstack.org/194705 | 16:02 |
*** bitblt has joined #openstack-dns | 16:03 | |
*** fawadkhaliq has joined #openstack-dns | 16:11 | |
*** boris-42 has quit IRC | 16:22 | |
openstackgerrit | Merged openstack/designate: Correct sample coord URL https://review.openstack.org/200149 | 16:36 |
*** rudrajit has joined #openstack-dns | 16:37 | |
*** rudrajit has quit IRC | 16:37 | |
*** rudrajit has joined #openstack-dns | 16:37 | |
*** l6unchpad has quit IRC | 16:39 | |
*** bitblt has quit IRC | 16:45 | |
*** rudrajit has quit IRC | 16:53 | |
*** jordanP has quit IRC | 16:55 | |
*** cing has quit IRC | 17:02 | |
*** busterswt has joined #openstack-dns | 17:02 | |
openstackgerrit | Merged openstack/designate: Ensure only one pool-manager performs periodic tasks https://review.openstack.org/194626 | 17:07 |
*** CTWill has joined #openstack-dns | 17:07 | |
*** rbrooker has joined #openstack-dns | 17:11 | |
ekarlso | Kiall: :D | 17:11 |
*** boris-42 has joined #openstack-dns | 17:20 | |
*** rudrajit has joined #openstack-dns | 17:21 | |
*** jschwarz has quit IRC | 17:27 | |
*** naggappan has joined #openstack-dns | 17:43 | |
*** rudrajit_ has joined #openstack-dns | 17:59 | |
*** jmcbride has quit IRC | 17:59 | |
*** jmcbride has joined #openstack-dns | 18:01 | |
*** rudrajit has quit IRC | 18:02 | |
*** rbrooker has quit IRC | 18:34 | |
*** jmcbride has quit IRC | 18:39 | |
*** CTWill has quit IRC | 18:40 | |
openstackgerrit | Eric Peterson proposed openstack/designate-dashboard: Record creation / update screen simplification https://review.openstack.org/193710 | 18:54 |
*** ducttape_ has quit IRC | 18:57 | |
*** ducttape_ has joined #openstack-dns | 18:58 | |
*** jmcbride has joined #openstack-dns | 18:59 | |
*** jmcbride has quit IRC | 19:03 | |
*** jmcbride has joined #openstack-dns | 19:05 | |
*** jmcbride has quit IRC | 19:05 | |
*** jmcbride has joined #openstack-dns | 19:06 | |
*** naggappan has quit IRC | 19:11 | |
*** rbrooker has joined #openstack-dns | 19:19 | |
openstackgerrit | Merged openstack/designate: Test - add nicer formating to flake8 output https://review.openstack.org/190200 | 19:23 |
*** lpmulligan has quit IRC | 19:24 | |
Kiall | lol - why did I only just now notice the commit title on ^? mugsie -_- | 19:30 |
timsim | hahaha me too | 19:31 |
mugsie | yurp | 19:33 |
mugsie | ah well | 19:33 |
mugsie | review better next time ;) | 19:34 |
Kiall | new default review for mugsie's code: -2 | 19:34 |
timsim | agreed. | 19:35 |
*** rudrajit has joined #openstack-dns | 19:40 | |
*** rudrajit_ has quit IRC | 19:43 | |
openstackgerrit | Kiall Mac Innes proposed openstack/designate: Add __pycache__ to ST2 Ignore https://review.openstack.org/200229 | 19:47 |
openstackgerrit | Kiall Mac Innes proposed openstack/designate: Refactor mDNS packet finalization https://review.openstack.org/200230 | 19:47 |
*** mlavalle has quit IRC | 19:47 | |
Kiall | timsim / mugsie: those ^ please.. Building another important fix on top ;) | 19:48 |
* timsim checks for "Test | 19:49 | |
timsim | in the commit msg | 19:49 |
*** crc32 has joined #openstack-dns | 19:55 | |
*** rudrajit_ has joined #openstack-dns | 20:00 | |
*** rudrajit has quit IRC | 20:04 | |
*** ducttape_ has quit IRC | 20:05 | |
*** jmcbride has quit IRC | 20:05 | |
*** ducttape_ has joined #openstack-dns | 20:06 | |
*** jmcbride has joined #openstack-dns | 20:07 | |
*** ducttape_ has quit IRC | 20:08 | |
*** ducttape_ has joined #openstack-dns | 20:08 | |
*** mlavalle has joined #openstack-dns | 20:17 | |
*** CTWill has joined #openstack-dns | 20:40 | |
*** bustersw_ has joined #openstack-dns | 20:47 | |
*** rudrajit has joined #openstack-dns | 20:48 | |
*** bustersw_ has quit IRC | 20:48 | |
*** rudrajit_ has quit IRC | 20:51 | |
*** busterswt has quit IRC | 20:52 | |
*** jmcbride has quit IRC | 21:03 | |
*** jmcbride has joined #openstack-dns | 21:07 | |
*** rudrajit_ has joined #openstack-dns | 21:07 | |
*** rudrajit has quit IRC | 21:10 | |
*** rudrajit_ has quit IRC | 21:30 | |
*** rudrajit has joined #openstack-dns | 21:37 | |
*** CTWill has quit IRC | 21:40 | |
*** rudrajit has quit IRC | 21:41 | |
*** rudrajit has joined #openstack-dns | 21:42 | |
*** johnbelamaric has quit IRC | 21:43 | |
*** rudrajit has quit IRC | 21:47 | |
*** rudrajit has joined #openstack-dns | 21:47 | |
*** jmcbride has quit IRC | 21:53 | |
*** pglass has quit IRC | 22:10 | |
*** mlavalle has quit IRC | 22:11 | |
*** csoukup has quit IRC | 22:36 | |
*** fawadkhaliq has quit IRC | 22:43 | |
*** ducttape_ has quit IRC | 22:59 | |
*** km has joined #openstack-dns | 23:00 | |
*** rudrajit has quit IRC | 23:10 | |
*** kei_yama has joined #openstack-dns | 23:21 | |
*** rudrajit has joined #openstack-dns | 23:21 | |
*** pksingh has joined #openstack-dns | 23:25 | |
*** pksingh has quit IRC | 23:29 | |
*** dtx00ff has joined #openstack-dns | 23:31 | |
*** openstack has joined #openstack-dns | 23:40 | |
*** ChanServ sets mode: +v openstack | 23:40 | |
*** dtx00ff has quit IRC | 23:45 | |
*** pksingh has joined #openstack-dns | 23:46 | |
*** chlong has quit IRC | 23:49 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!