Thursday, 2014-07-10

KiallAnd.. I think I have a bug in my code preventing yours.. damn :P00:02
*** betsy has quit IRC00:05
KiallOkay.. I'm calling it a night, will fixup the last 13 or so tests tomorrow when I'm slightly more awake ;)00:08
*** shakamunyi has joined #openstack-dns00:22
*** shakamunyi has quit IRC00:22
*** sballe has quit IRC00:35
*** yidclare has quit IRC00:35
*** vinod1 has quit IRC00:50
*** vinod1 has joined #openstack-dns01:15
*** msisk has quit IRC01:25
*** msisk has joined #openstack-dns01:26
*** dtx00ff has quit IRC01:46
*** dtx00ff has joined #openstack-dns01:46
*** msisk has quit IRC01:47
*** msisk_ has joined #openstack-dns01:47
*** nosnos has joined #openstack-dns01:48
*** richm has left #openstack-dns01:49
*** dtx00ff has quit IRC01:51
*** msisk_ has quit IRC02:03
*** mwagner_lap has quit IRC02:04
*** shufflebot has quit IRC02:12
*** shufflebot has joined #openstack-dns02:13
*** slawqo has quit IRC02:29
*** richm has joined #openstack-dns02:33
*** richm has left #openstack-dns02:34
*** nosnos has quit IRC03:23
*** nosnos has joined #openstack-dns03:53
openstackgerritVinod Mangalpally proposed a change to openstack/designate: Answer dns record queries  https://review.openstack.org/10584504:08
*** betsy has joined #openstack-dns04:17
*** vinod1 has quit IRC04:42
*** sballe has joined #openstack-dns05:33
*** k4n0 has joined #openstack-dns05:35
*** nosnos has quit IRC06:08
*** sballe has quit IRC06:17
*** slawqo has joined #openstack-dns07:08
*** zigo has quit IRC09:05
*** zigo has joined #openstack-dns09:07
*** slawqo has quit IRC10:04
*** slawqo has joined #openstack-dns10:05
*** slawqo has quit IRC10:10
*** slawqo has joined #openstack-dns10:16
*** k4n0 has quit IRC11:26
*** vinod1 has joined #openstack-dns11:30
*** openstackgerrit has quit IRC11:47
*** vinod1 has quit IRC11:58
*** vinod1 has joined #openstack-dns12:21
*** vinod1 has quit IRC12:35
*** eankutse has joined #openstack-dns12:37
*** eankutse has quit IRC12:39
*** eankutse has joined #openstack-dns12:39
*** retr0h has quit IRC13:04
*** mwagner_lap has joined #openstack-dns13:05
*** retr0h has joined #openstack-dns13:05
KiallAhh.. Clean :) https://launchpad.net/designate/+milestone/juno-213:13
KiallSorry for the spam folks ;)13:13
*** sballe has joined #openstack-dns13:36
*** sballe has quit IRC13:48
*** sballe has joined #openstack-dns13:48
*** vinod1 has joined #openstack-dns14:00
*** sballe has quit IRC14:06
*** jaycaz has joined #openstack-dns14:06
*** sballe has joined #openstack-dns14:07
*** sballe has quit IRC14:07
*** msisk has joined #openstack-dns14:07
*** sballe has joined #openstack-dns14:07
*** timsim has joined #openstack-dns14:12
*** betsy has quit IRC14:13
*** crc32 has quit IRC14:14
*** crc32 has joined #openstack-dns14:14
*** sballe has quit IRC14:22
*** sballe has joined #openstack-dns14:23
Kiallvinod1: re https://review.openstack.org/#/c/105845/ "Once the recordset/record changes get merged in, the recordset will already have the records." ..I actually agree with you. I saw it was getting them explicitly and think it's best to merge like that, and update when the RRSet change merges14:29
*** sballe has quit IRC14:29
*** sballe has joined #openstack-dns14:30
vinod1Thanks Kiall.  Re the FORMERR, bind and powerdns seem to behave differently14:30
KiallFun.14:30
KiallWhat do you see on each?14:30
vinod1bind behaves as i have coded14:30
vinod1powerdns just drops the request14:30
KiallWas that with TCP or UDP requests?14:31
vinod1i checked with udp14:31
KiallI guess I don't know how that works - for UDP anyway - because without the matching ID, no DNS tool will be able to tie the request/response packets together :/14:31
KiallI guess they could make a guess.. But still :)14:33
vinod1i did debate on whether to drop the packet or return a FORMERR with a mismatched id14:33
vinod1the reason that i went with the latter is that if there is any issue - it would at least alert us at one end14:34
vinod1rather than fail silently14:34
KiallYea, I don't see it as harmful .. I just really didn't expect it to function :DF14:34
*** sballe has quit IRC14:42
*** eankutse1 has joined #openstack-dns14:43
vinod1kiall: one other thing that i am unsure of is whether NXRRSET is the right error to return14:43
*** sballe has joined #openstack-dns14:43
*** eankutse has quit IRC14:43
Kiallvinod1: As in NXDOMAIN or NXRRSET ?14:44
vinod1yes14:44
KiallIt looks like we'll return an NXRRSET when the domain doesn't exist14:44
KiallMaybe we need to move the domain fetch a little higher up, before we fetch the RRSet?14:45
vinod1we just check for the recordset directly and not the domain14:45
KiallWell - we do fetch the domain aswell in some cases14:45
vinod1when ttl is not null - yes14:45
KiallMaybe, if we enter the except exceptions.NotFound:, we attempt to fetch the domain and decide there if we return an NXDOMAIN or NXRRSET?14:46
vinod1what domain do we search for - the same name as the one in the query?14:47
KiallOHH14:47
KiallCrud.14:47
KiallSo.. Akamai (happen to have one of their nameservers in my history ;)) return an NXDOMAIN for a name with no RRSets14:49
vinod1also if i query for a recordtype where a different recordtype exists I get a NOERROR14:49
*** sballe has quit IRC14:50
Kialland REFUSED when the qname is in a non-hosted zone14:50
vinod1e.g. if I query smtp.hp.com with a recordtype SRV, I get a NOERROR with a blank answer section14:50
KiallDNS servers suck ;) http://www.iana.org/assignments/dns-parameters/dns-parameters.xml#dns-parameters-614:51
KiallSo - There's a subtle difference between when NOERROR and NXDOMAIN should be returned it seems14:53
KiallNOERROR would be acceptable for a recursive nameserver, while NXDOMAIN is expected for authoritative nameserver14:53
Kialland NXRRSET is wrong for us - it seems to be about dealing with prerequisite's in Dynamic DNS updates14:54
vinod1what do you see if you query for a recordtype SRV at smtp.hp.com14:56
*** jaycaz has quit IRC14:57
*** eankutse1 has quit IRC14:57
*** eankutse has joined #openstack-dns14:58
vinod1have a meeting now - will be back in 15 mins14:58
*** dtx00ff has joined #openstack-dns14:58
*** msisk has quit IRC15:01
*** msisk has joined #openstack-dns15:01
Kiallvinod1: on a call now myself too15:09
*** eankutse has quit IRC15:16
*** richm has joined #openstack-dns15:17
*** crc32 has quit IRC15:26
*** vinod1 has quit IRC15:27
*** jaycaz has joined #openstack-dns15:29
*** vinod1 has joined #openstack-dns15:30
*** betsy has joined #openstack-dns15:30
*** openstackgerrit has joined #openstack-dns15:32
*** ChanServ sets mode: +v openstackgerrit15:32
*** sballe has joined #openstack-dns15:57
*** eankutse has joined #openstack-dns16:04
*** eankutse has quit IRC16:04
*** eankutse has joined #openstack-dns16:05
*** dtx00ff has quit IRC16:13
*** dtx00ff has joined #openstack-dns16:13
*** jaycaz has quit IRC16:15
*** jaycaz has joined #openstack-dns16:17
*** dtx00ff has quit IRC16:18
openstackgerritBetsy Luzader proposed a change to openstack/designate: Port Report Extensions from v1 to v2  https://review.openstack.org/10609416:20
*** eankutse has quit IRC16:26
openstackgerritJordan Cazamias proposed a change to openstack/designate-specs: Add spec for Zone and Record TotalCount  https://review.openstack.org/10609816:29
*** jaycaz has quit IRC16:30
*** dtx00ff has joined #openstack-dns16:43
betsykiall: I thought I’d start on exposing the SOA records, unless you’re already working on it16:49
*** shakamunyi has joined #openstack-dns16:50
*** shakamunyi has quit IRC16:50
openstackgerritVinod Mangalpally proposed a change to openstack/designate: Answer dns record queries  https://review.openstack.org/10584516:59
vinod1kiall: I simplified error handling a bit and am returning REFUSED.  If zone transfers hits an issue, I thought we could add additional logic to return more error codes if needed17:00
*** shakamunyi has joined #openstack-dns17:03
*** shakamunyi has quit IRC17:03
*** shakamunyi has joined #openstack-dns17:04
*** shakamunyi has quit IRC17:04
*** shakamunyi has joined #openstack-dns17:06
*** shakamunyi has quit IRC17:06
*** shakamunyi has joined #openstack-dns17:06
*** shakamunyi has quit IRC17:07
*** betsy has quit IRC17:18
*** shakamunyi has joined #openstack-dns17:20
*** richm has quit IRC17:21
*** jaycaz has joined #openstack-dns17:29
*** shakamunyi has quit IRC17:29
*** shakamunyi has joined #openstack-dns17:30
*** shakamunyi has quit IRC17:30
*** shakamunyi has joined #openstack-dns17:30
*** shakamunyi has quit IRC17:30
*** shakamunyi has joined #openstack-dns17:31
*** shakamunyi has quit IRC17:31
*** richm has joined #openstack-dns17:36
*** crc32 has joined #openstack-dns17:36
*** richm has quit IRC17:40
*** eankutse has joined #openstack-dns17:45
*** eankutse has quit IRC17:46
*** eankutse has joined #openstack-dns17:46
jaycazHey all, I added a spec for the zone/record count showing the possible different formats. If you get the chance, could someone look over it and comment on what format seems better (or, if you want to propose an alternative, go for it)17:50
jaycaz https://review.openstack.org/#/c/106098/17:50
*** richm has joined #openstack-dns17:55
*** yidclare has joined #openstack-dns17:55
*** betsy has joined #openstack-dns18:01
*** shufflebot has quit IRC18:01
*** shufflebot has joined #openstack-dns18:01
*** dtx00ff_ has joined #openstack-dns18:07
*** jaycaz has left #openstack-dns18:11
*** dtx00ff has quit IRC18:11
*** bandarji has joined #openstack-dns18:14
*** jaycaz has joined #openstack-dns18:17
*** mwagner_lap has quit IRC18:21
*** vinod1 has quit IRC18:40
*** vinod1 has joined #openstack-dns18:40
*** mwagner_lap has joined #openstack-dns18:41
*** yidclare has quit IRC18:43
*** dtx00ff_ has quit IRC18:45
*** vinod1 has quit IRC18:56
*** eankutse has quit IRC19:00
*** eankutse has joined #openstack-dns19:08
*** eankutse has quit IRC19:08
*** eankutse has joined #openstack-dns19:08
*** jaycaz has quit IRC19:09
*** dtx00ff has joined #openstack-dns19:15
*** jaycaz has joined #openstack-dns19:16
*** crc32 has quit IRC19:30
*** jaycaz has quit IRC19:33
*** eankutse1 has joined #openstack-dns19:38
*** jaycaz has joined #openstack-dns19:38
*** eankutse1 has quit IRC19:38
*** eankutse has quit IRC19:38
*** eankutse has joined #openstack-dns19:38
*** dtx00ff has quit IRC19:40
*** msisk has quit IRC19:41
*** msisk has joined #openstack-dns19:42
openstackgerritChristian Berendt proposed a change to openstack/designate: Enabled hacking check H401  https://review.openstack.org/10615119:45
*** sballe has quit IRC19:49
*** jaycaz has quit IRC19:54
openstackgerritChristian Berendt proposed a change to openstack/python-designateclient: Enabled hacking check H401  https://review.openstack.org/10615519:55
*** sballe has joined #openstack-dns19:55
*** jaycaz has joined #openstack-dns19:59
*** shakamunyi has joined #openstack-dns20:02
*** shakamunyi has quit IRC20:02
*** shakamunyi has joined #openstack-dns20:04
*** shakamunyi has quit IRC20:04
*** dtx00ff has joined #openstack-dns20:07
*** dtx00ff has quit IRC20:11
*** dtx00ff has joined #openstack-dns20:15
*** dtx00ff has quit IRC20:19
*** jaycaz has quit IRC20:21
*** jaycaz has joined #openstack-dns20:26
*** msisk has quit IRC20:32
*** msisk has joined #openstack-dns20:33
*** dtx00ff has joined #openstack-dns20:46
*** yidclare has joined #openstack-dns20:51
*** mwagner_lap has quit IRC20:56
*** eankutse has quit IRC20:58
*** eankutse has joined #openstack-dns20:58
*** yidclare has quit IRC21:08
*** sballe has quit IRC21:11
*** rossk has joined #openstack-dns21:11
*** yidclare has joined #openstack-dns21:16
*** dtx00ff has quit IRC21:17
*** vinod1 has joined #openstack-dns21:27
openstackgerritBetsy Luzader proposed a change to openstack/designate: Port Report Extensions from v1 to v2  https://review.openstack.org/10609421:30
*** timsim has quit IRC21:36
*** timsim has joined #openstack-dns21:36
*** vinod1 has quit IRC21:41
*** eankutse1 has joined #openstack-dns21:43
*** eankutse has quit IRC21:45
*** timsim has quit IRC21:49
*** dtx00ff has joined #openstack-dns21:56
*** eankutse1 has quit IRC21:57
*** eankutse has joined #openstack-dns21:57
*** jaycaz has quit IRC21:59
*** jaycaz has joined #openstack-dns21:59
*** msisk has quit IRC22:00
*** jaycaz has quit IRC22:02
*** eankutse has quit IRC22:03
*** betsy has quit IRC22:06
*** richm has quit IRC22:32
*** vipul has quit IRC22:32
*** slawqo has quit IRC22:32
*** zigo has quit IRC22:32
*** uvirtbot has quit IRC22:32
*** dtx00ff has quit IRC22:32
*** rektide has quit IRC22:33
*** rossk has quit IRC22:33
*** seventy3_away has quit IRC22:33
*** puck has quit IRC22:33
*** Kiall has quit IRC22:33
*** briancline has quit IRC22:33
*** bauruine has quit IRC22:33
*** harmw has quit IRC22:33
*** openstackgerrit has quit IRC22:33
*** mugsie has quit IRC22:33
*** spiffxp has quit IRC22:33
*** baffle_ has quit IRC22:33
*** mariusv has quit IRC22:33
*** ekarlso has quit IRC22:33
*** yidclare has quit IRC22:33
*** serverascode has quit IRC22:33
*** timfreund has quit IRC22:33
*** med_ has quit IRC22:33
*** retr0h has quit IRC22:33
*** shufflebot has quit IRC22:33
*** rickerc has quit IRC22:33
*** rjrjr has quit IRC22:33
*** bandarji has quit IRC22:33
*** mgagne has quit IRC22:33
*** simonmcc has quit IRC22:33
*** soren has quit IRC22:33
*** ChanServ has quit IRC22:33
*** mikal has quit IRC22:33
*** vipul has joined #openstack-dns22:36
*** richm has joined #openstack-dns22:36
*** dtx00ff has joined #openstack-dns22:36
*** yidclare has joined #openstack-dns22:36
*** rossk has joined #openstack-dns22:36
*** bandarji has joined #openstack-dns22:36
*** openstackgerrit has joined #openstack-dns22:36
*** retr0h has joined #openstack-dns22:36
*** slawqo has joined #openstack-dns22:36
*** zigo has joined #openstack-dns22:36
*** shufflebot has joined #openstack-dns22:36
*** rjrjr has joined #openstack-dns22:36
*** uvirtbot has joined #openstack-dns22:36
*** rektide has joined #openstack-dns22:36
*** rickerc has joined #openstack-dns22:36
*** mugsie has joined #openstack-dns22:36
*** spiffxp has joined #openstack-dns22:36
*** mgagne has joined #openstack-dns22:36
*** serverascode has joined #openstack-dns22:36
*** bauruine has joined #openstack-dns22:36
*** baffle_ has joined #openstack-dns22:36
*** mariusv has joined #openstack-dns22:36
*** ekarlso has joined #openstack-dns22:36
*** harmw has joined #openstack-dns22:36
*** briancline has joined #openstack-dns22:36
*** Kiall has joined #openstack-dns22:36
*** puck has joined #openstack-dns22:36
*** seventy3_away has joined #openstack-dns22:36
*** simonmcc has joined #openstack-dns22:36
*** soren has joined #openstack-dns22:36
*** timfreund has joined #openstack-dns22:36
*** med_ has joined #openstack-dns22:36
*** ChanServ has joined #openstack-dns22:36
*** dickson.freenode.net sets mode: +vo openstackgerrit ChanServ22:36
*** mikal has joined #openstack-dns22:36
*** msisk has joined #openstack-dns22:46
*** yidclare has quit IRC23:00
*** yidclare has joined #openstack-dns23:08
*** dtx00ff is now known as darshan23:11
*** darshan is now known as darshans23:11
*** darshans is now known as darshan10423:14
*** darshan104 has quit IRC23:16
*** dtx00ff has joined #openstack-dns23:16
*** dtx00ff is now known as darshan10423:16
*** yidclare has quit IRC23:21
*** shakamunyi has joined #openstack-dns23:28
*** shakamunyi has quit IRC23:28
*** richm has quit IRC23:43
*** bandarji has quit IRC23:43

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