We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3534acb commit 88d6dbaCopy full SHA for 88d6dba
veadk/integrations/ve_viking_db_memory/ve_viking_db_memory.py
@@ -13,6 +13,7 @@
13
# limitations under the License.
14
15
import json
16
+import os
17
import threading
18
19
from volcengine.ApiInfo import ApiInfo
@@ -281,6 +282,9 @@ def create_collection(
281
282
params = {
283
"CollectionName": collection_name,
284
"ProjectName": project,
285
+ "CollectionType": os.getenv(
286
+ "DATABASE_VIKINGMEM_COLLECTION_TYPE", "standard"
287
+ ),
288
"Description": description,
289
"CustomEventTypeSchemas": custom_event_type_schemas,
290
"CustomEntityTypeSchemas": custom_entity_type_schemas,
0 commit comments