-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Description Generator would break with the [new DBaaS enums for Datadog](https://github.com/exoscale/dbaas-api/blob/40b1ba53298095740a736f55905f3e4aff62a542/modules/dbaas-schemas/resources/schemas/dbaas-api.edn#L2562) ```clojure :enum-datadog-site #{"us3.datadoghq.com" "ddog-gov.com" "datadoghq.eu" "us5.datadoghq.com" "ap1.datadoghq.com" "datadoghq.com"} ``` For the entry "ddog-gov.com" the existing code considers only one separator and it generates ```go EnumDatadogSiteDdogGov.com EnumDatadogSite = "ddog-gov.com" ``` With these changes it would generate ```go EnumDatadogSiteDdogGovCom EnumDatadogSite = "ddog-gov.com" ``` ## Checklist (For exoscale contributors) * [x] Changelog updated (under *Unreleased* block) * [x] For a new resource or new attributes: test added/updated --------- Co-authored-by: Philipp Sauter <philipp.sauter@exoscale.ch>
- Loading branch information
1 parent
fb4bcaf
commit d380d78
Showing
5 changed files
with
46 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
GO_MK_REF := v2.0.0 | ||
GO_MK_REF := v2.0.2 | ||
|
||
# make go.mk a dependency for all targets | ||
.EXTRA_PREREQS = go.mk | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters