Skip to content
This repository was archived by the owner on Mar 13, 2020. It is now read-only.

Commit 5c0d7dc

Browse files
committed
[SP-3] Remove magic number
1 parent 644b04c commit 5c0d7dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rdl/data_sources/AWSLambdaDataSource.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def __get_table_data(
105105
):
106106
pay_load = {
107107
"command": "GetTableData",
108-
"tenantId": 543, # self.connection_string.tenant.split('_')[0] as int
108+
"tenantId": self.connection_data["tenant"],
109109
"table": {"schema": table_config["schema"], "name": table_config["name"]},
110110
"commandPayload": {
111111
"auditColumnNameForChangeVersion": Providers.AuditColumnsNames.CHANGE_VERSION,

0 commit comments

Comments
 (0)