Open nydrani opened 4 years ago
An error was introduced in arrai
version v0.136.0
where newlines were not being inserted in some instances.
An example can be found in when generating svc_service.arrai
(line 65):
// built with arrai v0.135.0
u.RawQuery = q.Encode()
result, err := restlib.DoHTTPRequest(...)
// built with arrai v0.136.0
u.RawQuery = q.Encode()result, err := restlib.DoHTTPRequest(...)
I'd recommend the arraiw
pattern that other repos use. We will probably move to running arrai via Docker at some point, and when we do, we can update all arraiw
repos at once.
Note that this kind of issue will also be caught by the blueprints
tool once it goes into "production" (i.e. CI).
An error was introduced in
arrai
versionv0.136.0
where newlines were not being inserted in some instances.An example can be found in when generating
svc_service.arrai
(line 65):// built with arrai v0.135.0 u.RawQuery = q.Encode() result, err := restlib.DoHTTPRequest(...) // built with arrai v0.136.0 u.RawQuery = q.Encode()result, err := restlib.DoHTTPRequest(...)
If you really wanna be risky you can just put semi colons in where the newlines are meant to be and let go fmt do the rest
The new autogen facility already uses version-tagged docker images.
Related: https://github.com/anz-bank/sysl-go/issues/28