Evan Roggenkamp
Evan Roggenkamp
Debugging command helps. Was getting a HTTP/1.1 301 Moved Permanently Turns out I needed to use HTTPS when instantiating the api object. All is good now. Would be kinda cool...
@ktbyers I did a bit of testing and it does appear that the `Device ID` column is restricted to 40 characters. You can see our domain getting truncated here. RP/0/RSP0/CPU0:TRANSPORT-CISCO-ASR9010-TEST-1#sh...
> I have to be pedandic... hostnames and FQDNs have the valid characters a-z0-9- and the dot (.) for classifying the domain regions. There's no space allowed. > Nevertheless if...
This worked for me Had to put _after_ colorscheme ``` highlight CustomH ctermfg=white ctermbg=NONE cterm=bold,underline guifg=white guibg=NONE gui=bold,underline highlight link CleverFChar CustomH ``` I am not sure why the highlight...
> class Custom_API(Api): > @property > def specs_url(self): > ''' > The Swagger specifications absolute url (ie. `swagger.json`) > > :rtype: str > ''' > return url_for(self.endpoint('specs'), _external=False) Can you...