You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Validate fails due to the path being in a remote repository. That file may not be available locally or relative.
Causes:
Error: cannot create job: Invalid notebook_path: /Users/sri.tikkireddy@databricks.com/.bundle/demo/default/files/bundler. Only relative paths are currently supported for remote repositories. Paths must not begin with '/'.
with databricks_job.demo,
on bundle.tf.json line 567, in resource.databricks_job.demo:
567: }
Git based jobs are a valid form of deployment. Need a way to support this.
The text was updated successfully, but these errors were encountered:
## Changes
Added skipping of translating paths for notebook path in notebook tasks
and python file path in spark python tasks if the git source is not null.
Resolves: #402
## Tests
There is a unit test and also tested with a sample bundle:
```
resources:
jobs:
demo:
git_source:
git_branch: master
git_provider: github
git_url: https://github.com/test/dummy
....
```
---------
Co-authored-by: Pieter Noordhuis <pieter.noordhuis@databricks.com>
Validate fails due to the path being in a remote repository. That file may not be available locally or relative.
Causes:
Git based jobs are a valid form of deployment. Need a way to support this.
The text was updated successfully, but these errors were encountered: