From 172e14b176528a43a023af2533cc46cbbf5f0b2c Mon Sep 17 00:00:00 2001 From: Colton Padden Date: Fri, 22 Mar 2024 10:34:32 -0400 Subject: [PATCH] rm default sling translator --- docs/content/integrations/embedded-elt.mdx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docs/content/integrations/embedded-elt.mdx b/docs/content/integrations/embedded-elt.mdx index 23aae82ffe03d..597bbf7fd4ef0 100644 --- a/docs/content/integrations/embedded-elt.mdx +++ b/docs/content/integrations/embedded-elt.mdx @@ -123,7 +123,6 @@ Each stream will render two assets, one for the source stream and one for the ta ```python file=/integrations/embedded_elt/sling_dagster_translator.py from dagster_embedded_elt.sling import ( - DagsterSlingTranslator, SlingResource, sling_assets, ) @@ -134,10 +133,7 @@ replication_config = file_relative_path(__file__, "../sling_replication.yaml") sling_resource = SlingResource(connections=[...]) # Add connections here -@sling_assets( - replication_config=replication_config, - dagster_sling_translator=DagsterSlingTranslator(), -) +@sling_assets(replication_config=replication_config) def my_assets(context, sling: SlingResource): yield from sling.replicate(context=context) for row in sling.stream_raw_logs():