On Thu, 17 Jan 2019, Riccardo (Jack) Lucchetti wrote:
On Thu, 17 Jan 2019, Sven Schreiber wrote:
> Hi,
> I'm getting a lot of DBnomics "internal server errors" recently? Is
this
> really on the side of the DBnomics server or some other problem?
The problem is that the base URL we've been using since the API v.022
transition doesn't work anymore. We'd need to apply this change:
--- a/addons/dbnomics/dbnomics_private.inp
+++ b/addons/dbnomics/dbnomics_private.inp
@@ -324,7 +324,7 @@ end function
function scalar dbn_get_json (const string parms, bool verbose[0],
string *json)
- string URL = "https://api.dev.db.nomics.world/v22/" ~ parms
+ string URL = "https://api.db.nomics.world/v22/" ~ parms
if verbose
printf "URL: %s\n\n", URL
endif
I could do this straight away and commit to git; should I bump the dbnomics
version form 0.3 to 0.31?
Yes please, on both counts.
Allin