I am getting this warning while trying to fetch af...
# suitecommerce
w
I am getting this warning while trying to fetch after authorizing. UnhandledPromiseRejectionWarning: Error: getaddrinfo ENOTFOUND 3569702_sb1.restlets.api.netsuite.com at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js6426) Any ideas?
k
Im getting the same issues, Set up production with TBA and it works great, refreshed sandbox and can not deploy. Cant find any good documentation.
I am getting redirected to the browser and try to log into sandbox account and basically get the same type of error
Opening a ticket to get this resolved, if i find an answer i will let you know
@WFL2 its the endpoiint its trying to hit. this is a Netsuite wide issue for theme extension tools that _ should be a - lol they are sending me a temporary work around steps, until the release comes out by next week to fix it 1. [2:55 PM] Go to Theme or Extensions Dev Tools/ns_npm_repository/oauth1/index.js 2. Replace: return this._baseStep(
${this.vm ? ‘’ : account}${this.urls.step3}
, params);
3. With: return this._baseStep(
${this.vm ? ‘’ : account.replace(‘_’,‘-’)}${this.urls.step3}
, params);
4. Then, go to Theme or Extensions Dev Tools/gulp/ns-deploy/net.js 5. Replace: deploy.info.hostname = `${account}.restlets.api.${molecule}netsuite.com`; 6. With: deploy.info.hostname = `${account.replace(‘_’,‘-’)}.restlets.api.${molecule}netsuite.com`; this is the workaround
👍 4
w
There was some weird formatting with singles quotes from slack, but once I replaced those, that appears to have fixed my issue. Thank you so much @Kirk Taylor
👍 1
a
Thanks for sharing @Kirk Taylor . Super helpful. This solved my exact issue.
❤️ 1