Skip to content

Commit

Permalink
Merge pull request #25175: Fix SchemaTransform identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
chamikaramj authored Jan 26, 2023
2 parents f565a94 + 13a489e commit 2c45ac4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ protected SchemaTransform from(BigQueryDirectReadSchemaTransformConfiguration co

@Override
public String identifier() {
return String.format("beam:transform:org.apache.beam:bigquery_storage_read:v1");
return "beam:schematransform:org.apache.beam:bigquery_storage_read:v1";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
@AutoService(SchemaTransformProvider.class)
public class PubsubSchemaTransformReadProvider
extends TypedSchemaTransformProvider<PubsubSchemaTransformReadConfiguration> {
private static final String API = "pubsub";
static final String OUTPUT_TAG = "OUTPUT";

/** Returns the expected class of the configuration. */
Expand All @@ -74,7 +73,7 @@ protected SchemaTransform from(PubsubSchemaTransformReadConfiguration configurat
/** Implementation of the {@link TypedSchemaTransformProvider} identifier method. */
@Override
public String identifier() {
return String.format("%s:read", API);
return "beam:schematransform:org.apache.beam:pubsub_read:v1";
}

/**
Expand Down

0 comments on commit 2c45ac4

Please sign in to comment.