Skip to content

Commit

Permalink
Merge pull request #91 from amzn/ecr_timestamp_model_fix
Browse files Browse the repository at this point in the history
Correct timestamp type for ECR models
  • Loading branch information
tachyonics committed Jul 10, 2023
2 parents 388c1e0 + 810ea89 commit 2d0741d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/SmokeAWSGenerate/ECRConfiguration.swift
Expand Up @@ -23,7 +23,7 @@ internal struct ECRConfiguration {
static let modelOverride = ModelOverride(
enumerations: EnumerationNaming(usingUpperCamelCase: ["ImageFailureCode", "LayerFailureCode"]),
fieldRawTypeOverride:
[Fields.timestamp.typeDescription: CommonConfiguration.longDateOverride])
[Fields.timestamp.typeDescription: CommonConfiguration.integerDateOverride])

static let httpClientConfiguration = HttpClientConfiguration(
retryOnUnknownError: true,
Expand Down
2 changes: 1 addition & 1 deletion Sources/SmokeAWSGenerate/main.swift
Expand Up @@ -176,7 +176,7 @@ func generatePackageFile(baseNames: [String]) -> String {
.package(url: "https://github.com/apple/swift-log", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-metrics.git", "1.0.0"..<"3.0.0"),
.package(url: "https://github.com/LiveUI/XMLCoding.git", from: "0.4.1"),
.package(url: "https://github.com/amzn/smoke-http.git", from: "2.12.0"),
.package(url: "https://github.com/amzn/smoke-http.git", from: "2.19.1"),
.package(url: "https://github.com/amzn/smoke-aws-support.git", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-crypto.git", from: "1.0.0"),
],
Expand Down

0 comments on commit 2d0741d

Please sign in to comment.