Clear 301, Redirect Cache from Google Chrome

How to clear the redirect cache in google chrome

Background:
 
I ran into a problem during development of setting an incorrect 301 cache from nginx.
Issue I had was redirecting http to the wrong https server.
Google Chrome cache the 301 redirect and continued to serve the wrong redirect even after I fixed the remote site.

Googling showed me how to temporarily disable the redirect cache by bringing up the 'settings' of the developer tools and selecting to disable cache when tools were open.  That removed the cache...while the tools were open...once I closed the tools the bad cache entry was still present.

Then I found I could clear the cache by:
  1. Visit:  chrome://net-internals/
  2. Click the upper right arrow and select 'Clear cache'

The invalid entry is now resolved :)