Skip to content

Commit

Permalink
fixed tuner missing salt and key arg
Browse files Browse the repository at this point in the history
  • Loading branch information
ncilfone committed May 16, 2022
1 parent 66ef5a2 commit 075a2a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spock/builder.py
Expand Up @@ -280,7 +280,7 @@ def _handle_tuner_objects(
from spock.addons.tune.builder import TunerBuilder
from spock.addons.tune.payload import TunerPayload

tuner_builder = TunerBuilder(*tune_args, **kwargs, lazy=self._lazy)
tuner_builder = TunerBuilder(*tune_args, **kwargs, lazy=self._lazy, salt=self.salt, key=self.key)
tuner_payload = TunerPayload(s3_config=s3_config)
return tuner_builder, tuner_payload
except ImportError:
Expand Down

0 comments on commit 075a2a8

Please sign in to comment.