Skip to content

Commit

Permalink
fix: CQDG-00 config vcf
Browse files Browse the repository at this point in the history
  • Loading branch information
jecos committed Oct 27, 2023
1 parent 9569f43 commit a007f74
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config/output/config/prod-cqdg.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2166,7 +2166,7 @@ datalake {
{
filesystem=S3
id="storage_vcf"
path="s3a://cqdg-prod-app-file-import"
path="s3a://cqdg-qa-file-import"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion config/output/config/qa-cqdg.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2166,7 +2166,7 @@ datalake {
{
filesystem=S3
id="storage_vcf"
path="s3a://cqdg-qa-app-file-import"
path="s3a://cqdg-qa-file-import"
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ object ConfigurationGenerator extends App {
ConfigurationWriter.writeTo(s"config/output/config/qa-${project}.conf", ETLConfiguration(es_conf, DatalakeConf(
storages = List(
StorageConf(storage, s"s3a://${conf(project)("bucketNamePrefix").replace("{ENV}", "qa")}", S3),
StorageConf(storage_vcf, "s3a://cqdg-qa-app-file-import", S3)
StorageConf(storage_vcf, "s3a://cqdg-qa-file-import", S3)
),
sources = populateTable(sources, conf(project)("qaDbName")),
args = args.toList,
Expand All @@ -187,7 +187,7 @@ object ConfigurationGenerator extends App {
ConfigurationWriter.writeTo(s"config/output/config/prod-${project}.conf", ETLConfiguration(es_conf, DatalakeConf(
storages = List(
StorageConf(storage, s"s3a://${conf(project)("bucketNamePrefix").replace("{ENV}", "prod")}", S3),
StorageConf(storage_vcf, "s3a://cqdg-prod-app-file-import", S3)
StorageConf(storage_vcf, "s3a://cqdg-qa-file-import", S3)
),
sources = populateTable(sources, conf(project)("prdDbName")),
args = args.toList,
Expand Down

0 comments on commit a007f74

Please sign in to comment.