Skip to content

Commit 6acfbf4

Browse files
committed
NRL-1346 Table name update
1 parent dac9ff4 commit 6acfbf4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

terraform/account-wide-infrastructure/modules/glue/glue.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ resource "aws_glue_crawler" "log_crawler" {
4747
path = "s3://${aws_s3_bucket.target-data-bucket.id}/producer_upsertDocumentReference/"
4848
}
4949
s3_target {
50-
path = "s3://${aws_s3_bucket.target-data-bucket.id}/ssp/"
50+
path = "s3://${aws_s3_bucket.target-data-bucket.id}/spine_sspDocumentRetrieval/"
5151
}
5252
schema_change_policy {
5353
delete_behavior = "LOG"

terraform/account-wide-infrastructure/modules/glue/src/pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def load(self, data):
116116
for name, dataframe in data.items():
117117
name = name.replace("--", "_")
118118
if name == "s2c":
119-
name = "ssp"
119+
name = "spine_sspDocumentRetrieval"
120120
try:
121121
if dataframe.rdd.isEmpty():
122122
self.logger.info(f"{name} dataframe has no rows. Skipping.")

0 commit comments

Comments
 (0)