Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Commit

Permalink
Transformations fail for oracle tap (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpcarter authored May 19, 2020
1 parent e1a568f commit fb006ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tap_oracle/sync_strategies/full_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def sync_view(conn_config, stream, state, desired_columns):
escaped_schema = schema_name
escaped_table = stream.table
activate_version_message = singer.ActivateVersionMessage(
stream=stream.stream,
stream=stream.tap_stream_id,
version=nascent_stream_version)

if first_run:
Expand Down Expand Up @@ -108,7 +108,7 @@ def sync_table(conn_config, stream, state, desired_columns):
escaped_schema = schema_name
escaped_table = stream.table
activate_version_message = singer.ActivateVersionMessage(
stream=stream.stream,
stream=stream.tap_stream_id,
version=nascent_stream_version)

if first_run:
Expand Down
2 changes: 1 addition & 1 deletion tap_oracle/sync_strategies/incremental.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def sync_table(conn_config, stream, state, desired_columns):
singer.write_message(singer.StateMessage(value=copy.deepcopy(state)))

activate_version_message = singer.ActivateVersionMessage(
stream=stream.stream,
stream=stream.tap_stream_id,
version=stream_version)
singer.write_message(activate_version_message)

Expand Down

0 comments on commit fb006ec

Please sign in to comment.