File tree 2 files changed +10
-60
lines changed
2 files changed +10
-60
lines changed Original file line number Diff line number Diff line change 13
13
14
14
from __future__ import annotations
15
15
16
+ import asyncio
16
17
import os
17
18
import airbyte as ab
18
19
from airbyte import get_source , AirbyteConnectorCache
27
28
serialization_format = "native" , # Use mitmproxy's native format
28
29
)
29
30
31
+ loop = asyncio .new_event_loop ()
32
+ asyncio .set_event_loop (loop )
33
+
30
34
try :
31
35
port = cache .start ()
32
36
print (f"HTTP cache started on port { port } " )
45
49
46
50
local_cache = ab .new_local_cache ("poke" )
47
51
48
- print ("Reading data from source..." )
52
+ print ("First run - making HTTP requests..." )
53
+ source .read (cache = local_cache )
54
+ print ("First run completed" )
55
+
56
+ print ("Second run - should use cached responses..." )
49
57
source .read (cache = local_cache )
50
- print ("Data read successfully " )
58
+ print ("Second run completed " )
51
59
52
60
finally :
53
61
print ("Stopping HTTP cache..." )
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments