File tree Expand file tree Collapse file tree
test/integration/objectstore Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import logging
2+ from collections .abc import Callable
23from datetime import datetime
34from enum import Enum
45from typing import (
78 Optional ,
89 Union ,
910)
10- from collections .abc import Callable
1111from urllib .parse import urlparse
1212
1313from pydantic import (
Original file line number Diff line number Diff line change 3333)
3434from ._base import BaseObjectStoreIntegrationTestCase
3535
36- DISTRIBUTED_OBJECT_STORE_CONFIG_TEMPLATE = string .Template (
37- """<?xml version="1.0"?>
36+ DISTRIBUTED_OBJECT_STORE_CONFIG_TEMPLATE = string .Template ("""<?xml version="1.0"?>
3837<object_store type="distributed" id="primary" order="0">
3938 <backends>
4039 <backend id="default" allow_selection="true" type="disk" weight="1" device="tmp_disk">
6160 </backend>
6261 </backends>
6362</object_store>
64- """
65- )
63+ """ )
6664
6765DEFAULT_OBJECT_STORE_ID = "default"
6866OTHER_OBJECT_STORE_ID = "other"
You can’t perform that action at this time.
0 commit comments