Laurence Armstrong

Results 8 comments of Laurence Armstrong

Not really sure I am just missing something but I don't really understand the proposed change to the spec. > allow (configurable if the impl wants) custom attributes in WAMP...

I see, thank you. I think I was misunderstanding what you meant by "forwarding". WAMP _messages_ aren't really ever forwarded. I.e. the router creates a new `INVOCATION` message, it doesn't...

I agree with @GregRos's solution. Seems like the simplest and most sensible to me. This issue has been open for a long time. At what point does a decision get...

+1. This sounds like a good idea and a good approach to me.

Any updates on this? Seems common to have Terraform modules as separate subdirectories and it can be tedious to add each one.

I understand that. That's pretty much what I did. But I essentially just wrote a wrapper method that calls `DataDirs()` and returns the first element. My use case is essentially...

I just wrote the wrapper like: ```go func DataDir(scope *gap.Scope) (string, error) { dataDirs, err := scope.DataDirs() if err != nil { return "", err } if len(dataDirs) == 0...