Skip to content

Commit

Permalink
Merge pull request #414 from DataRecce/feature/drc-571-enhancement-su…
Browse files Browse the repository at this point in the history
…pport-merge-local-and-cloud-state

Recce server should not be able to launch if no state available in the review mode
  • Loading branch information
popcornylu authored Sep 11, 2024
2 parents 3bc6dc6 + 549e7d0 commit f59d8f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recce/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def load(cls, **kwargs):
context.adapter = DbtAdapter.load(**kwargs)

# Import state
if state_loader:
if state_loader is not None:
state = state_loader.load()
if state:
context.import_state(state)
Expand Down

0 comments on commit f59d8f0

Please # to comment.