Jakub Liska
Jakub Liska
If I run gen-idea, open that project and go to Project Structure, there is no facet at all and one can't even add a scala facet because of non existing...
Is there any workaround in the meantime?
For me this workaround doesn't work : ``` object Foo extends DefaultJsonProtocol { import spray.json._ case class CampKey(value: String) extends AnyVal case class DataPointKey(value: String) extends AnyVal case class DataPointValue(value:...
Yeah I did not want to discourage people from reading it as they usually give up on snippets longer that xx lines and I would decrease my changes on getting...
Does this mean that this java client cannot authenticate using Tokens and one of the remaining methods like OAuth or basic auth must be used ?
This is strange, I don't want to use http basic auth and it is not clear to me how I can set up OAuth. There is even no `new OAuth()`...
There actually is a way that doesn't throw the `Unimplemented` exception : ``` Config.fromToken( "https://1.2.3.4", "...", false ) ``` However there is another error https://github.com/kubernetes-client/java/issues/163
Something like this would suit the README better : ``` aws --endpoint-url=http://localhost:8000 dynamodb create-table \ --table-name akka-persistence \ --attribute-definitions \ AttributeName=par,AttributeType=S \ AttributeName=num,AttributeType=N \ --key-schema AttributeName=par,KeyType=HASH AttributeName=num,KeyType=RANGE \ --provisioned-throughput ReadCapacityUnits=1000,WriteCapacityUnits=1000...
Resolved, I had to run the Local DynamoDB with `-sharedDb` flag, uff :-)
@jayaram171992 I forgot to thank you as I overlooked the notification but now I think I will have a good use for embedded-druid, thank you for this !!