Skip to content

Commit a413f03

Browse files
committed
contentproviders robustness
1 parent bfe988b commit a413f03

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

server/workers/common/common/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def get_or_create_contentprovider_lookup():
8383
k = str(uuid.uuid4())
8484
d = {"id": k, "params": {},"endpoint": "contentproviders"}
8585
redis_store.rpush("base", json.dumps(d))
86-
result = get_key(redis_store, k, 10)
86+
result = get_key(redis_store, k, 100)
8787
if result.get("status") == "error":
8888
df = pd.read_json("contentproviders.json")
8989
df.set_index("internal_name", inplace=True)

0 commit comments

Comments
 (0)