Bart Versluijs
Bart Versluijs
After typing this issue, I thought about the `watch` function of Vue. So I used this: ```js watch: { rowData (row) { // Function to update the data } }...
Hi Thodoris, I see, it's a bit confusing indeed. However, if there's a way to get the Balena instance from the initiated SDK, it's fine for me. I need to...
Hi @thgreasi, Thanks for thinking with me. I've created my own typing of the Balena SDK which extends the current Balena SDK and included the hostname. This way, I can...
Hi @thgreasi, Correct, there's no `sdk.hostname` in the Balena SDK at the moment. So I had to populate it. I initiate the SDK via a custom method, which populates the...
Thanks for the suggestion @thgreasi. Indeed, I'm looping over an array (with `array.find`), but the input is a device (registered on our server & Balena) and based on the app...
Hi @thgreasi, First of all, sorry for my late response. If I understand correctly, you're asking if it's fine to pass the request options with every error, even if the...
I completely agree that you want to enforce HTTPS for security. Running this on plain HTTPS isn't secure at all. However, I think this is the task of an NGINX,...
Just for some more information, I've stumbled upon this problem because of errors in the [open-balena-vpn](https://github.com/balena-io/open-balena-vpn) container. This uses the [BALENA_API_HOST](https://github.com/balena-io/open-balena-vpn/search?q=BALENA_API_HOST&unscoped_q=BALENA_API_HOST) for connecting to the API. But everything has `https://`...
So, after trying that again, the node exits, according to it's logs: ``` Program node index.js exited with code 1 ``` But the systemctl doesn't. After doing a: ``` systemctl...
Tested it out, because I saw a change that has something to do with the provisioning in the changelog, and it seems like PR #657 causes this issue. Everything works...