Skip to content

Commit

Permalink
Replace angled single quotes with regular single quotes (dbt-labs#6030)
Browse files Browse the repository at this point in the history
## What are you changing in this pull request and why?
Copy/paste required editing the ‘ and ’ characters (angled quotes) with
' (regular single quote). This causes churn when trying to get things
working in the `profiles.yml` file using the example config.

## Checklist
- [ ] I have reviewed the [Content style
guide](https://github.com/dbt-labs/docs.getdbt.com/blob/current/contributing/content-style-guide.md)
so my content adheres to these guidelines.
- [ ] The topic I'm writing about is for specific dbt version(s) and I
have versioned it according to the [version a whole
page](https://github.com/dbt-labs/docs.getdbt.com/blob/current/contributing/single-sourcing-content.md#adding-a-new-version)
and/or [version a block of
content](https://github.com/dbt-labs/docs.getdbt.com/blob/current/contributing/single-sourcing-content.md#versioning-blocks-of-content)
guidelines.
- [ ] I have added checklist item(s) to this list for anything anything
that needs to happen before this PR is merged, such as "needs technical
review" or "change base branch."
<!--
PRE-RELEASE VERSION OF dbt (if so, uncomment):
- [ ] Add a note to the prerelease version [Migration
Guide](https://github.com/dbt-labs/docs.getdbt.com/tree/current/website/docs/docs/dbt-versions/core-upgrade)
-->
<!-- 
ADDING OR REMOVING PAGES (if so, uncomment):
- [ ] Add/remove page in `website/sidebars.js`
- [ ] Provide a unique filename for new pages
- [ ] Add an entry for deleted pages in `website/vercel.json`
- [ ] Run link testing locally with `npm run build` to update the links
that point to deleted pages
-->

---------

Co-authored-by: Mirna Wong <[email protected]>
  • Loading branch information
johnson-jay-l and mirnawong1 authored Sep 9, 2024
1 parent 9e63ffd commit 8df69c7
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions website/docs/reference/resource-configs/databricks-configs.md
Original file line number Diff line number Diff line change
Expand Up @@ -410,43 +410,43 @@ To take advantage of this capability, you will need to add compute blocks to you

```yaml

<profile-name>:
target: <target-name> # this is the default target
profile-name:
target: target-name # this is the default target
outputs:
<target-name>:
target-name:
type: databricks
catalog: [optional catalog name if you are using Unity Catalog]
schema: [schema name] # Required
host: [yourorg.databrickshost.com] # Required
catalog: optional catalog name if you are using Unity Catalog
schema: schema name # Required
host: yourorg.databrickshost.com # Required

### This path is used as the default compute
http_path: [/sql/your/http/path] # Required
http_path: /sql/your/http/path # Required

### New compute section
compute:

### Name that you will use to refer to an alternate compute
Compute1:
http_path: [‘/sql/your/http/path’] # Required of each alternate compute
http_path: '/sql/your/http/path' # Required of each alternate compute

### A third named compute, use whatever name you like
Compute2:
http_path: [‘/some/other/path’] # Required of each alternate compute
http_path: '/some/other/path' # Required of each alternate compute
...

<target-name>: # additional targets
target-name: # additional targets
...
### For each target, you need to define the same compute,
### but you can specify different paths
compute:

### Name that you will use to refer to an alternate compute
Compute1:
http_path: [‘/sql/your/http/path’] # Required of each alternate compute
http_path: '/sql/your/http/path' # Required of each alternate compute

### A third named compute, use whatever name you like
Compute2:
http_path: [‘/some/other/path’] # Required of each alternate compute
http_path: '/some/other/path' # Required of each alternate compute
...

```
Expand Down

0 comments on commit 8df69c7

Please sign in to comment.