buildgrid 0.3.5__py3-none-any.whl → 0.4.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- buildgrid/server/app/cli.py +4 -4
- buildgrid/server/app/settings/parser.py +46 -17
- buildgrid/server/app/settings/schema.yml +16 -2
- buildgrid/server/bots/service.py +4 -10
- buildgrid/server/cas/storage/index/index_abc.py +0 -7
- buildgrid/server/cas/storage/index/sql.py +91 -215
- buildgrid/server/cas/storage/redis_fmb_cache.py +220 -0
- buildgrid/server/enums.py +5 -0
- buildgrid/server/metrics_names.py +0 -2
- buildgrid/server/scheduler/impl.py +298 -70
- buildgrid/server/sql/alembic/versions/3737630fc9cf_remove_deleted_column_from_sql_cas_index.py +43 -0
- buildgrid/server/sql/models.py +0 -2
- buildgrid/server/sql/utils.py +3 -3
- buildgrid/server/utils/bots.py +1 -1
- buildgrid/server/version.py +1 -1
- {buildgrid-0.3.5.dist-info → buildgrid-0.4.0.dist-info}/METADATA +2 -2
- {buildgrid-0.3.5.dist-info → buildgrid-0.4.0.dist-info}/RECORD +21 -19
- {buildgrid-0.3.5.dist-info → buildgrid-0.4.0.dist-info}/WHEEL +1 -1
- {buildgrid-0.3.5.dist-info → buildgrid-0.4.0.dist-info}/entry_points.txt +0 -0
- {buildgrid-0.3.5.dist-info → buildgrid-0.4.0.dist-info}/licenses/LICENSE +0 -0
- {buildgrid-0.3.5.dist-info → buildgrid-0.4.0.dist-info}/top_level.txt +0 -0
buildgrid/server/sql/alembic/versions/3737630fc9cf_remove_deleted_column_from_sql_cas_index.py
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Copyright (C) 2025 Bloomberg LP
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# <http://www.apache.org/licenses/LICENSE-2.0>
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
"""Remove deleted column from SQL CAS index
|
|
16
|
+
|
|
17
|
+
Revision ID: 3737630fc9cf
|
|
18
|
+
Revises: ff09fbc30c3e
|
|
19
|
+
Create Date: 2026-01-27 14:49:47.715880
|
|
20
|
+
|
|
21
|
+
"""
|
|
22
|
+
|
|
23
|
+
import sqlalchemy as sa
|
|
24
|
+
from alembic import op
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
# revision identifiers, used by Alembic.
|
|
28
|
+
revision = "3737630fc9cf"
|
|
29
|
+
down_revision = "ff09fbc30c3e"
|
|
30
|
+
branch_labels = None
|
|
31
|
+
depends_on = None
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
def upgrade() -> None:
|
|
35
|
+
with op.batch_alter_table("index", schema=None) as batch_op:
|
|
36
|
+
batch_op.drop_column("deleted")
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
def downgrade() -> None:
|
|
40
|
+
with op.batch_alter_table("index", schema=None) as batch_op:
|
|
41
|
+
batch_op.add_column(
|
|
42
|
+
sa.Column("deleted", sa.BOOLEAN(), server_default=sa.text("false"), autoincrement=False, nullable=False)
|
|
43
|
+
)
|
buildgrid/server/sql/models.py
CHANGED
|
@@ -23,7 +23,6 @@ from sqlalchemy import (
|
|
|
23
23
|
Sequence,
|
|
24
24
|
Table,
|
|
25
25
|
UniqueConstraint,
|
|
26
|
-
false,
|
|
27
26
|
func,
|
|
28
27
|
text,
|
|
29
28
|
)
|
|
@@ -260,7 +259,6 @@ class IndexEntry(Base):
|
|
|
260
259
|
digest_hash: Mapped[str] = mapped_column(index=True, primary_key=True)
|
|
261
260
|
digest_size_bytes: Mapped[bigint]
|
|
262
261
|
accessed_timestamp: Mapped[datetime.datetime] = mapped_column(index=True)
|
|
263
|
-
deleted: Mapped[bool] = mapped_column(server_default=false())
|
|
264
262
|
inline_blob: Mapped[bytes | None]
|
|
265
263
|
|
|
266
264
|
|
buildgrid/server/sql/utils.py
CHANGED
|
@@ -209,9 +209,9 @@ def strtobool(val: str) -> bool:
|
|
|
209
209
|
raise ValueError(f"invalid truth value {val}")
|
|
210
210
|
|
|
211
211
|
|
|
212
|
-
def parse_list_operations_sort_value(value: str, column:
|
|
212
|
+
def parse_list_operations_sort_value(value: str, column: ColumnElement[Any]) -> Any:
|
|
213
213
|
"""Convert the string representation of a value to the proper Python type."""
|
|
214
|
-
python_type = column.
|
|
214
|
+
python_type = column.type.python_type
|
|
215
215
|
if python_type == datetime:
|
|
216
216
|
return datetime.strptime(value, DATETIME_FORMAT)
|
|
217
217
|
elif python_type == bool: # noqa: E721
|
|
@@ -278,7 +278,7 @@ def build_page_filter(page_token: str, sort_keys: list[SortKey]) -> ColumnElemen
|
|
|
278
278
|
# Build the compound clause for each sort key in the token
|
|
279
279
|
for i, sort_key in enumerate(sort_keys):
|
|
280
280
|
col = LIST_OPERATIONS_PARAMETER_MODEL_MAP[sort_key.name]
|
|
281
|
-
sort_value = parse_list_operations_sort_value(token_elements[i], col)
|
|
281
|
+
sort_value = parse_list_operations_sort_value(token_elements[i], col.expression)
|
|
282
282
|
filter_clause = build_pagination_clause_for_sort_key(sort_value, previous_sort_values, sort_keys)
|
|
283
283
|
sort_key_clause_list.append(filter_clause)
|
|
284
284
|
previous_sort_values.append(sort_value)
|
buildgrid/server/utils/bots.py
CHANGED
|
@@ -42,6 +42,6 @@ def bot_log_tags(bot_session: BotSession) -> dict[str, Any]:
|
|
|
42
42
|
"request.bot_name": bot_session.name,
|
|
43
43
|
"request.bot_id": bot_session.bot_id,
|
|
44
44
|
"request.bot_status": bot_session.status,
|
|
45
|
-
"request.leases":
|
|
45
|
+
"request.leases.size": len(bot_session.leases),
|
|
46
46
|
"request.capacity": get_bot_capacity(bot_session),
|
|
47
47
|
}
|
buildgrid/server/version.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: buildgrid
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: A remote execution service
|
|
5
5
|
License: Apache License, Version 2.0
|
|
6
6
|
Project-URL: Homepage, https://buildgrid.build
|
|
@@ -16,7 +16,6 @@ Requires-Dist: dnspython
|
|
|
16
16
|
Requires-Dist: grpcio-reflection>=1.62.0
|
|
17
17
|
Requires-Dist: grpcio-health-checking>=1.62.0
|
|
18
18
|
Requires-Dist: grpcio>=1.62.0
|
|
19
|
-
Requires-Dist: importlib-resources
|
|
20
19
|
Requires-Dist: janus>=0.6.2
|
|
21
20
|
Requires-Dist: jinja2
|
|
22
21
|
Requires-Dist: protobuf
|
|
@@ -89,6 +88,7 @@ Requires-Dist: types-aiofiles; extra == "mypy"
|
|
|
89
88
|
Requires-Dist: types-cachetools; extra == "mypy"
|
|
90
89
|
Requires-Dist: types-docutils; extra == "mypy"
|
|
91
90
|
Requires-Dist: types-jsonschema; extra == "mypy"
|
|
91
|
+
Requires-Dist: types-jwcrypto; extra == "mypy"
|
|
92
92
|
Requires-Dist: types-protobuf; extra == "mypy"
|
|
93
93
|
Requires-Dist: types-psycopg2; extra == "mypy"
|
|
94
94
|
Requires-Dist: psycopg>=3.2.10; extra == "mypy"
|
|
@@ -193,12 +193,12 @@ buildgrid/_protos/google/rpc/status_pb2_grpc_aio.pyi,sha256=IgjCKdg4s94m9QN1giHN
|
|
|
193
193
|
buildgrid/server/__init__.py,sha256=g9lb8Sn7NY5KOjkMr9GQoJovCVDEg_Fxz_EhdDbhP1I,579
|
|
194
194
|
buildgrid/server/context.py,sha256=mGk36n0gDp46EgOAtLWY1RNwPF8piDs5y-1zC3HDsZ4,2367
|
|
195
195
|
buildgrid/server/controller.py,sha256=ubHkc2km9NT_3xsFgIDfmMTxQwVL_ZBWxF3DhN_ZXNU,2273
|
|
196
|
-
buildgrid/server/enums.py,sha256=
|
|
196
|
+
buildgrid/server/enums.py,sha256=JVFsOkdD-wwnyAZsb45y7uPzlz2f6CHcCEdvgfjJmPQ,6376
|
|
197
197
|
buildgrid/server/exceptions.py,sha256=rMtEINwO5IMGdd5FViySXO6pcuDhzt6P_zTcTtCQIjg,9772
|
|
198
198
|
buildgrid/server/limiter.py,sha256=fD1JzGeUTZssw2JKHRpMnq4gNt926m5TkV1q2-3DNkk,2855
|
|
199
199
|
buildgrid/server/logging.py,sha256=KInQaa16km_DM9AyowlCW0Fd0UoU6vy9xalSwguu4Mo,6584
|
|
200
200
|
buildgrid/server/metadata.py,sha256=1qNBMvV-Uo2XqGhnsz-iuueT-ayZI9kE5TwZuXhE9eU,9186
|
|
201
|
-
buildgrid/server/metrics_names.py,sha256=
|
|
201
|
+
buildgrid/server/metrics_names.py,sha256=IfkhaktB75FuH3Dsbc0uxiysoTQ3Tz8QyYrv-X6eEZc,6883
|
|
202
202
|
buildgrid/server/metrics_tags.py,sha256=HFGCX-PYEi1aKOdSDB5GX9Z5XnsoylX89CKuUbhbelM,1686
|
|
203
203
|
buildgrid/server/metrics_utils.py,sha256=wWtj7FbKfx2OFK-lPbdGw2ATLRMaD9p1xkOhmvql2m0,4936
|
|
204
204
|
buildgrid/server/monitoring.py,sha256=Ic1qKWfvlmcQOXLN3fVq6Ya1Co1lEU_2aHeXXof2BfI,19110
|
|
@@ -208,7 +208,7 @@ buildgrid/server/servicer.py,sha256=oqU9MaSxxHTDmSxobFTo9YmJctaUCklE2Dj-vfYWKkc,
|
|
|
208
208
|
buildgrid/server/settings.py,sha256=I1UK-g4_GwkX0nGC3hdGS3Cc0Rh1HTYDv2aHU2sq_eU,5604
|
|
209
209
|
buildgrid/server/threading.py,sha256=4QKQYev2KoO2Q-S_OyaoR9qpWyDTVzGMWVe9o2a1yIU,4743
|
|
210
210
|
buildgrid/server/types.py,sha256=xG3bx64pbWMuEwXLuI0o8c2unt2rU2C4zsmUfmMT12c,1323
|
|
211
|
-
buildgrid/server/version.py,sha256=
|
|
211
|
+
buildgrid/server/version.py,sha256=dJ5K3XB8w7Q7bN6CrOaOmK0t9ot2fT0-JXmvV9rw9U4,603
|
|
212
212
|
buildgrid/server/actioncache/__init__.py,sha256=g9lb8Sn7NY5KOjkMr9GQoJovCVDEg_Fxz_EhdDbhP1I,579
|
|
213
213
|
buildgrid/server/actioncache/instance.py,sha256=UCR7ZGkv4fJOXjeIILMAdTSFWcGgBSYlBg8fMaPJpaI,3139
|
|
214
214
|
buildgrid/server/actioncache/service.py,sha256=WcikJAzFYOYX-tgiOfGGcOnPoubrCd4yP-EhKCHEW0c,2021
|
|
@@ -223,7 +223,7 @@ buildgrid/server/actioncache/caches/sharded_cache.py,sha256=LgNSAle9Bqo9bySpzsmT
|
|
|
223
223
|
buildgrid/server/actioncache/caches/with_cache.py,sha256=yweZD2hgt1ddL6nc_cNOJp7igV-oDVKG-ISxiOuqAII,4650
|
|
224
224
|
buildgrid/server/actioncache/caches/write_once_cache.py,sha256=IVzUwFtGIMN2V1s4ADnObV9qARLHJgEB2HYokFhkFus,3336
|
|
225
225
|
buildgrid/server/app/__init__.py,sha256=ruQdLRXmXZNQ5jSzTdwXci6kPE6lTW8lzYU9d6qkkKU,621
|
|
226
|
-
buildgrid/server/app/cli.py,sha256=
|
|
226
|
+
buildgrid/server/app/cli.py,sha256=zui4XeSn3I5b85lOSYwVezPqH6LZfSvRq_C9LvlVcwg,5975
|
|
227
227
|
buildgrid/server/app/commands/__init__.py,sha256=g9lb8Sn7NY5KOjkMr9GQoJovCVDEg_Fxz_EhdDbhP1I,579
|
|
228
228
|
buildgrid/server/app/commands/cmd_actioncache.py,sha256=9Vt50nZ_xuv8CK33rdyQ8Rr6qHGGGZ34cgO6IRIUjvE,6885
|
|
229
229
|
buildgrid/server/app/commands/cmd_capabilities.py,sha256=6FJQXqfntK552uevf5tc-B2U0ikC16f0kVTmLhT8VXk,3271
|
|
@@ -239,9 +239,9 @@ buildgrid/server/app/commands/rpc_utils.py,sha256=3C02_0Ba4Weksb2kX5mANSubmfWAFR
|
|
|
239
239
|
buildgrid/server/app/settings/__init__.py,sha256=g9lb8Sn7NY5KOjkMr9GQoJovCVDEg_Fxz_EhdDbhP1I,579
|
|
240
240
|
buildgrid/server/app/settings/config.py,sha256=3cmmnkvZtM44zXkc6meNpmA6rJoDBbrridHoj-Quapo,9649
|
|
241
241
|
buildgrid/server/app/settings/mapper.py,sha256=sKD3LWyVXZWaFF16_JN1lbJkUE8vp5p06OJGOencxmU,752
|
|
242
|
-
buildgrid/server/app/settings/parser.py,sha256=
|
|
242
|
+
buildgrid/server/app/settings/parser.py,sha256=n5dgf-_UoZm1dbm141AIow15jSQnnprcmi67IdxTiI0,97808
|
|
243
243
|
buildgrid/server/app/settings/reference.yml,sha256=DTXNJ6TkccgBLcvzj5264XAv6HFlvsc5Lx6iowixHPE,10703
|
|
244
|
-
buildgrid/server/app/settings/schema.yml,sha256=
|
|
244
|
+
buildgrid/server/app/settings/schema.yml,sha256=MFmAAOpWC_PPhosXV_VxUY8oOUR5lQNeMZHtXXY3tvo,33188
|
|
245
245
|
buildgrid/server/auth/__init__.py,sha256=avyRxG9BSFd76mCHnGYInDDTqyqDn0UlhOuFzAkPQSs,579
|
|
246
246
|
buildgrid/server/auth/config.py,sha256=sWcaSL9Oz7mLVnFBuFT7OaOGlxFd6hxEb-z30n3uTNU,2291
|
|
247
247
|
buildgrid/server/auth/enums.py,sha256=O902XU3_C4rqWz23qVipEyQMcXXr1h8XCiPWmrs1_lc,1905
|
|
@@ -249,7 +249,7 @@ buildgrid/server/auth/exceptions.py,sha256=z9J0K3GSBAS14HiwWL-nlWLxRKbH2cA0hgYin
|
|
|
249
249
|
buildgrid/server/auth/manager.py,sha256=MVLyEux60EStFzJdAJX4Q0mEG1bodDVf1973lR3ULvQ,17462
|
|
250
250
|
buildgrid/server/bots/__init__.py,sha256=g9lb8Sn7NY5KOjkMr9GQoJovCVDEg_Fxz_EhdDbhP1I,579
|
|
251
251
|
buildgrid/server/bots/instance.py,sha256=JxJvI4L3z6FkhRsSs6BPs5Q7FJNvtoYZ-ganul8jqTs,1502
|
|
252
|
-
buildgrid/server/bots/service.py,sha256=
|
|
252
|
+
buildgrid/server/bots/service.py,sha256=SVP3zizwd2O0rzcuSNAN0gueSUblPElGyEghInTXV-Y,14575
|
|
253
253
|
buildgrid/server/build_events/__init__.py,sha256=zbeeRP9BEeDzR-Mx2Ip6SUr49J8eeXsuREgljJTrHkk,579
|
|
254
254
|
buildgrid/server/build_events/service.py,sha256=Cg3ky0rXFH0tDOehZ9mmllCBVyOZqvxhIZ8bp8XnCuY,5320
|
|
255
255
|
buildgrid/server/build_events/storage.py,sha256=StGGyx78fr1_Vfum4PJ9IlN0E4Bc2VPX8YiN5hXko44,7261
|
|
@@ -263,6 +263,7 @@ buildgrid/server/cas/storage/__init__.py,sha256=g9lb8Sn7NY5KOjkMr9GQoJovCVDEg_Fx
|
|
|
263
263
|
buildgrid/server/cas/storage/disk.py,sha256=VoNgDHNtBOy8rPxSHkBhvCOFs6iY3BBIWBFJshXZAp4,6291
|
|
264
264
|
buildgrid/server/cas/storage/lru_memory_cache.py,sha256=HRflHeNg0L8RZLvDeo3-mDiTd9ePAzQO30joaEGMFr4,6581
|
|
265
265
|
buildgrid/server/cas/storage/redis.py,sha256=WsezCXySyqLejvVVZbaiVCUQvjMM7SU2CDgT9euU-Po,5836
|
|
266
|
+
buildgrid/server/cas/storage/redis_fmb_cache.py,sha256=J6sp-ccSRAc82ldjkDcIcHVPKHQI_V3bj4PsVRTgLYQ,9343
|
|
266
267
|
buildgrid/server/cas/storage/remote.py,sha256=xsJhnslqW07aFk2pRyNMQWZfTBIZbYqJAkaI38jIwMs,8990
|
|
267
268
|
buildgrid/server/cas/storage/replicated.py,sha256=DF_oku2QJAigiRTz6358ZBy4LzQiIHiI86f0d5TAn7c,14950
|
|
268
269
|
buildgrid/server/cas/storage/s3.py,sha256=fHsbNBYBN6x2DnlG22_UA4GMjcqGEMlOU6yIHueE5mc,20058
|
|
@@ -272,9 +273,9 @@ buildgrid/server/cas/storage/sql.py,sha256=ERiHfqF9DA1Tu75QxHP2okAtQB3oA-DCFA95D
|
|
|
272
273
|
buildgrid/server/cas/storage/storage_abc.py,sha256=BTLNiAr31amzz22mcLy8ctM9lCcNypL79iD3hPmIUMI,7728
|
|
273
274
|
buildgrid/server/cas/storage/with_cache.py,sha256=IB-pq5S6R6V037RQiS4jGk9Jm5Wj_Qdy7WChs0xiDqI,8132
|
|
274
275
|
buildgrid/server/cas/storage/index/__init__.py,sha256=adgShFqjP778F2KJoM-z7stkT9V_3BPuc3uodlf1buw,579
|
|
275
|
-
buildgrid/server/cas/storage/index/index_abc.py,sha256=
|
|
276
|
+
buildgrid/server/cas/storage/index/index_abc.py,sha256=MimpHbMkRga53uL-kFuQVoIR5NpS_8CanrsnwFGKEAo,2870
|
|
276
277
|
buildgrid/server/cas/storage/index/redis.py,sha256=nJqZ9HEk65zxNnrD-7sQ6aS5PGy5l55p6-Rs-oSRSZY,16556
|
|
277
|
-
buildgrid/server/cas/storage/index/sql.py,sha256=
|
|
278
|
+
buildgrid/server/cas/storage/index/sql.py,sha256=FeW4t_QGAR0bUGDe0ZJQJS2GWhLpPXnE1ssSH8qEzU4,34670
|
|
278
279
|
buildgrid/server/cleanup/__init__.py,sha256=TTer4pMMV4HOzR6rYI9yPzDlMXEWnY_SXczlHiFZCng,579
|
|
279
280
|
buildgrid/server/cleanup/cleanup.py,sha256=Yyhc9LZpvIZnQNVn-mgnMfdPBrd1x9KMsqrHwmRhzf8,13606
|
|
280
281
|
buildgrid/server/cleanup/janitor/__init__.py,sha256=XaoGqSD-oQwbfSl8OcR0U4pScRcBueB4sU1tpcZNGtk,579
|
|
@@ -331,13 +332,13 @@ buildgrid/server/scheduler/__init__.py,sha256=arCg8LWFATeX1tj-s0keVYP8p3wwrrUlCV
|
|
|
331
332
|
buildgrid/server/scheduler/assigner.py,sha256=wHPAhyiQxYABZJXaUc2g5yFzM78Z0U5nvGV3X9h5pCM,10512
|
|
332
333
|
buildgrid/server/scheduler/cohorts.py,sha256=L_5YZRiVOwPPGStfqnnQXknO5Ja-SC0vq0xjw4XgP-I,1426
|
|
333
334
|
buildgrid/server/scheduler/events.py,sha256=cM7Z7Htr2pYKhltJxfg1YRo0q524yZaGm8yXvRehivk,1453
|
|
334
|
-
buildgrid/server/scheduler/impl.py,sha256=
|
|
335
|
+
buildgrid/server/scheduler/impl.py,sha256=u89cO8CNyRskXBaN-Aw3Pkl4i9ph_6Hgc-9GJ5uk5aY,138968
|
|
335
336
|
buildgrid/server/scheduler/notifier.py,sha256=22ZsKwyf2oQirAjrwROkvgvr4C_TMUNyhOmtro4uM4I,7121
|
|
336
337
|
buildgrid/server/scheduler/properties.py,sha256=2GydX8KUy9MFv1_JznIkGfWE_wOS0m_XapSv6Gp4pCM,11260
|
|
337
338
|
buildgrid/server/sql/__init__.py,sha256=zbeeRP9BEeDzR-Mx2Ip6SUr49J8eeXsuREgljJTrHkk,579
|
|
338
|
-
buildgrid/server/sql/models.py,sha256=
|
|
339
|
+
buildgrid/server/sql/models.py,sha256=mnweeVqQuOcZswRALScf_FxQLJyZJbcc9_Y8GgI_FUk,14448
|
|
339
340
|
buildgrid/server/sql/provider.py,sha256=M7QLy845mcP1dlcMsUU6T8nav5FQ7rKttmJmkctwi0c,19308
|
|
340
|
-
buildgrid/server/sql/utils.py,sha256=
|
|
341
|
+
buildgrid/server/sql/utils.py,sha256=Htf0CPrAqvcxQlUUWrYYh5FxtP53o8m3QGMjNG1KRbw,16462
|
|
341
342
|
buildgrid/server/sql/alembic/README,sha256=MVlc9TYmr57RbhXET6QxgyCcwWP7w-vLkEsirENqiIQ,38
|
|
342
343
|
buildgrid/server/sql/alembic/env.py,sha256=vRRLEpyPS_a-jeKKYvORE0NW2goBnjN7v62n7ix_t28,4534
|
|
343
344
|
buildgrid/server/sql/alembic/script.py.mako,sha256=z6re8oZ_Qk3kZBPMRWWl0b0_sb29J9V7ruHwBlODDHw,1090
|
|
@@ -346,6 +347,7 @@ buildgrid/server/sql/alembic/versions/0c17a7cb2bc5_initial_database_state.py,sha
|
|
|
346
347
|
buildgrid/server/sql/alembic/versions/12992085e81a_add_a_job_index_on_worker_name_and_.py,sha256=Dg5kxHvR4REXmhzpd72EXriMZRCFzO9XRTPRKmWcluY,1681
|
|
347
348
|
buildgrid/server/sql/alembic/versions/1f959c3834d3_drop_the_leases_table.py,sha256=V0X1XVVB_iq3nrwnVWDM7rhVrFDG3T8byZChsNwjcFA,1645
|
|
348
349
|
buildgrid/server/sql/alembic/versions/22cc661efef9_add_instance_quotas_table.py,sha256=zBf23GKRMJq5scFjWC83oMHvKy7K55zOTyWYrbTuJtI,1702
|
|
350
|
+
buildgrid/server/sql/alembic/versions/3737630fc9cf_remove_deleted_column_from_sql_cas_index.py,sha256=0hCI4Ji4CiRJLpotr1RlosF9-G4Ag_YiLXIpvux3aBo,1283
|
|
349
351
|
buildgrid/server/sql/alembic/versions/55acd9b4ec38_add_ix_jobs_property_label_stage.py,sha256=G7JvJYRuSOESKPYFWpOXWI2Wtf3y_UkZbxeSO9x7MkM,1582
|
|
350
352
|
buildgrid/server/sql/alembic/versions/55fcf6c874d3_remove_request_metadata_from_operations.py,sha256=tocevykCqf54rFGHm5nnczPhjjX8ePWC_xSOc-SK4Qs,3268
|
|
351
353
|
buildgrid/server/sql/alembic/versions/5745d1f0e537_drop_unused_indexes_and_create_.py,sha256=OjQrx8aTNSrwshVDozydcJzJYWmmJLSoGdnSlSMBcGM,2497
|
|
@@ -364,12 +366,12 @@ buildgrid/server/sql/alembic/versions/fb8afebee8e6_add_ix_jobs_worker_name_stage
|
|
|
364
366
|
buildgrid/server/sql/alembic/versions/ff09fbc30c3e_add_bots_version.py,sha256=2sGvyQC-fLw7iH7P_TZR3E2ZQMSN1CrGDq4dB5JPrBY,1417
|
|
365
367
|
buildgrid/server/utils/__init__.py,sha256=uPwjBaRA6KEakyYf45HeJHCVTdswgylOJ2EDI05Ietc,579
|
|
366
368
|
buildgrid/server/utils/async_lru_cache.py,sha256=iLKeRPoZtZb1wC5AtcyQm8Wt0Bx-KZmPwm8CGSMvF6Y,4471
|
|
367
|
-
buildgrid/server/utils/bots.py,sha256=
|
|
369
|
+
buildgrid/server/utils/bots.py,sha256=SzgUr1060yLlPr9LvOZilg1cukB2XcHGcu_G4cj6j5Q,1702
|
|
368
370
|
buildgrid/server/utils/cancellation.py,sha256=pNETzKNoXg0AsXOXKCcLWlFl7SVKdkKinlqWl7MesRA,1703
|
|
369
371
|
buildgrid/server/utils/digests.py,sha256=YNrWeHdbNp7OVTcsInjs30C33z_t9GQ_noMd14bpqPQ,2424
|
|
370
|
-
buildgrid-0.
|
|
371
|
-
buildgrid-0.
|
|
372
|
-
buildgrid-0.
|
|
373
|
-
buildgrid-0.
|
|
374
|
-
buildgrid-0.
|
|
375
|
-
buildgrid-0.
|
|
372
|
+
buildgrid-0.4.0.dist-info/licenses/LICENSE,sha256=swa3Vs7GgALaG9p-e05M-WLkhd_U9QknacNkyVZ85xA,11338
|
|
373
|
+
buildgrid-0.4.0.dist-info/METADATA,sha256=Hm83tqtU9SqoKI9DPTfhbYfuchzeQtBkRN5Na4g5h_o,7098
|
|
374
|
+
buildgrid-0.4.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
375
|
+
buildgrid-0.4.0.dist-info/entry_points.txt,sha256=uyFAXiR9d6EDfSA5vWT8xskz6xalt4PdTuRruT6Q8rk,49
|
|
376
|
+
buildgrid-0.4.0.dist-info/top_level.txt,sha256=T6TYhI_k6NTm2871tIxGCyBIqzlKxylgF9KDLU0Hi7o,10
|
|
377
|
+
buildgrid-0.4.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|