diff options
author | Gary Lockyer <gary@catalyst.net.nz> | 2019-07-18 13:39:20 +1200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2019-07-24 02:24:27 +0000 |
commit | 6d6fe4993876d3374ae7ffeaf55d660ffa6b450b (patch) | |
tree | 50faa2b39edba730e7e79556ad2d6ecde953a5f5 /script | |
parent | 6b1f9b4a5ff5450b0858d27dcc1af3021694be7d (diff) | |
download | samba-6d6fe4993876d3374ae7ffeaf55d660ffa6b450b.tar.gz |
traffic replay: Store the instance id in the replay context
Store the traffic runner instance id in the replay context. Will be
used in subsequent commits.
Signed-off-by: Gary Lockyer <gary@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'script')
-rwxr-xr-x | script/traffic_replay | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/script/traffic_replay b/script/traffic_replay index 0d74c876d12..d29f0a9839c 100755 --- a/script/traffic_replay +++ b/script/traffic_replay @@ -416,7 +416,8 @@ def main(): ou=traffic.ou_name(ldb, opts.instance_id), tempdir=tempdir, stop_on_any_error=opts.stop_on_any_error, - domain_sid=ldb.get_domain_sid()) + domain_sid=ldb.get_domain_sid(), + instance_id=opts.instance_id) if opts.timing_data == '-': timing_dest = sys.stdout |