Samir F
Samir F
Side note, I just tested this on another OS X laptop with the same behavior, so at least it's consistent.
I'm having the same issue. You can see the current behavior here: https://beta.gbfest.org. This is the only additional code Injection I have. ```css .kg-image{ height: 50%; width: 50%; float: left;...
I'm not sure if this is the same issue, but I'm comparing the generated HTML between the two versions. I think the reason is the CSS is no longer valid....
You could potentially also add pagination to avoid bogging down the system. Recursive calls are very handy but also if the call returns 50,000 objects it's a bottle neck.
The API call that failed is: https://api.taiga.io/api/v1/importers/asana/list_projects Response: {"error": "Server application error"} Request: {"token":{"access_token":"REPLACED","token_type":"bearer","expires_in":3600,"data":{"id":REPLACED,"gid":"REPLACED","name":"...","email":"replaced"},"refresh_token":"1/377248 All the values look valid in the original request so I think it's a server issue...
This is fixed I think? Since #101 is now closed.
I'm not sure if I mentioned this, I'm working on a [dashboard manager](https://github.com/netsage-project/grafana-dashboard-manager) that uses this SDK to communicate with Grafana. What I was thinking of doing is inspecting the...
the interface{} is indeed something to avoid but a bit harder to handle when the return type of the same field changes datatypes in the same request. That's such a...
The default pull is 1000 I believe. I fixed this in my importer tool using this pattern. https://github.com/esnet/gdg/blob/master/api/dashboards.go#L52 Basically you check if the page size is larger than the payload...
I had a similar request pending. https://github.com/grafana-tools/sdk/pull/195/files That fixed the issue for me. All you need is the Uid to be persisted when importing/exporting dashboards. That being said, I'm using...