Skip to content

Commit 20cece8

Browse files
author
maxime.c
committed
remove deep copy
1 parent db8312d commit 20cece8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

airbyte_cdk/manifest_server/routers/manifest.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import copy
21
import hashlib
32
from dataclasses import asdict
43
from typing import Any, Dict, List, Mapping, Optional
@@ -90,7 +89,7 @@ def test_read(request: StreamTestReadRequest) -> StreamReadResponse:
9089

9190
# We enforce a concurrency level of 1 so that the stream is processed on a single thread
9291
# to retain ordering for the grouping of the builder message responses.
93-
manifest = copy.deepcopy(request.manifest.model_dump())
92+
manifest = request.manifest.model_dump()
9493
if "concurrency_level" in manifest:
9594
manifest["concurrency_level"]["default_concurrency"] = 1
9695
else:

0 commit comments

Comments
 (0)