Results 14 comments of DonRichie

I believe the responses are the problem: ``` responses: '200' : #result ok $ref: '#/components/responses/RecordBody' ``` If I swap the above lines in a limited example with a another schema,...

If I further swap ``` $ref: '#/components/responses/RecordBody' ``` with ``` $ref: '#/components/schemas/RecordBody' ``` It works. But only in my limited example. Not the full spec. Please excuse my stumbling forward.

> Yes, soft keyboard only for android host. Close as wontfix I am sorry, but I can't understand this answer. Is there a way to forward keyboard input to a...

Hey, I had the same problem. The config name "Default" seems to be there by default. Which means it can't be used. Specify the additional environemnt variable "DOCKER_INFLUXDB_INIT_CLI_CONFIG_NAME=configname". Then it...

I just restarted it and now it says the config "configname" already exists. Okay that needs to be fixed by the devs. It simply should not do anything if the...

> But if I'm correct the problem then lies in influx itself so this issue is misplaced in this repository, no? No it is not misplaced in this repo. Have...

Have a look at the folks providing the mariadb container. `MARIADB_DATABASE -> This variable allows you to specify the name of a database to be created on image startup.` The...

I would like to add another use-case. My goal is to retrieve the ping durations and send them to influxdb via python for a nice visualization. With the read-only key...

**Here is my best try using a struct, but it fails due to the wrong function signature:** ``` package main import ( "fmt" "encoding/json" ) type WhiskResponse struct { body...

**I actually managed to set a header:** ``` package main import ( "fmt" "encoding/json" ) func PrettyPrint(v interface{}) (err error) { b, err := json.MarshalIndent(v, "", " ") if err...