Skip to content

Commit

Permalink
Avoid deepcopying the manifest 1x per task per sighup
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Beck committed Oct 14, 2019
1 parent 61f8e6d commit 14d8683
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/dbt/rpc/method.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class RemoteMethod(Generic[Parameters, Result]):
def __init__(self, args, config, manifest):
self.args = args
self.config = config
self.manifest = manifest.deepcopy()
self.manifest = manifest

@classmethod
def get_parameters(cls) -> Type[Parameters]:
Expand Down

0 comments on commit 14d8683

Please sign in to comment.