Skip to content

Commit 614a353

Browse files
author
EC2 Default User
committed
removed MANIFEST.in
1 parent 93f086e commit 614a353

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

python/datastax-v3/elasticache/write-through-cache/MANIFEST.in

Lines changed: 0 additions & 1 deletion
This file was deleted.

python/datastax-v3/elasticache/write-through-cache/write_through_caching_sample/test_functions.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ def test_case_2():
6969
print("Test Case 2:")
7070
print("Get top 3 Must Read book awards for year 2021 in the Sci-Fi category")
7171
print("\n")
72-
res=get_awards(["Must Read", 2021, "Sci-Fi", 23])
72+
res=get_awards(["Must Read", 2021, "Sci-Fi", 3])
7373
print(res)
7474

7575
#cache-hit - get awards from cache
7676
print("\n")
7777
print("Verify cache hit on subsequent query with same parameters:")
78-
res=get_awards(["Must Read", 2021, "Sci-Fi", 23])
78+
res=get_awards(["Must Read", 2021, "Sci-Fi", 3])
7979
print(res)
8080

8181
#let the cache entry expire
@@ -86,13 +86,13 @@ def test_case_2():
8686
#cache miss - get award from DB and lazy load to cache
8787
print("\n")
8888
print("Entry expired in cache, awards expected to be fetched from DB.")
89-
res=get_awards(["Must Read", 2021, "Sci-Fi", 23])
89+
res=get_awards(["Must Read", 2021, "Sci-Fi", 3])
9090
print(res)
9191

9292
#cache hit - get award from cache
9393
print("\n")
9494
print("Verify that awards are lazy loaded into cache:")
95-
res=get_awards(["Must Read", 2021, "Sci-Fi", 23])
95+
res=get_awards(["Must Read", 2021, "Sci-Fi", 3])
9696
print(res)
9797

9898
test_case_1()

0 commit comments

Comments
 (0)