Skip to content

Commit

Permalink
Merge pull request #2468 from ctiller/create-pull-request/patch-73fdc33
Browse files Browse the repository at this point in the history
Automated fix for refs/heads/expire
  • Loading branch information
ctiller authored Dec 18, 2024
2 parents 73fdc33 + d353d9c commit f56ac3c
Show file tree
Hide file tree
Showing 9 changed files with 1,856 additions and 1,872 deletions.
479 changes: 238 additions & 241 deletions BoringSSL-Package.swift

Large diffs are not rendered by default.

479 changes: 238 additions & 241 deletions Makefile

Large diffs are not rendered by default.

485 changes: 240 additions & 245 deletions config.m4

Large diffs are not rendered by default.

485 changes: 240 additions & 245 deletions config.w32

Large diffs are not rendered by default.

646 changes: 323 additions & 323 deletions grpc.gemspec

Large diffs are not rendered by default.

646 changes: 323 additions & 323 deletions package.xml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/objective-c/BoringSSL-GRPC.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Pod::Spec.new do |s|

s.source = {
:git => 'https://github.com/google/boringssl.git',
:commit => "dec0d8f681348af8bb675e07bd89989665fca8bc",
:commit => "b8b3e6e11166719a8ebfa43c0cde9ad7d57a84f6",
}

s.ios.deployment_target = '11.0'
Expand Down
494 changes: 244 additions & 250 deletions src/python/grpcio/grpc_core_dependencies.py

Large diffs are not rendered by default.

12 changes: 9 additions & 3 deletions tools/codegen/core/experiments_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,9 +224,15 @@ def IsValid(self, check_expiry=False):
):
return True
expiry = datetime.datetime.strptime(self._expiry, "%Y/%m/%d").date()
if (expiry.month == 11 or expiry.month == 12 or (expiry.month == 1 and expiry.day < 15)):
print("For experiment %s: Experiment expiration is not allowed between Nov 1 and Jan 15 (experiment lists %s)."
% (self._name, self._expiry))
if (
expiry.month == 11
or expiry.month == 12
or (expiry.month == 1 and expiry.day < 15)
):
print(
"For experiment %s: Experiment expiration is not allowed between Nov 1 and Jan 15 (experiment lists %s)."
% (self._name, self._expiry)
)
self._error = True
return False
if not check_expiry:
Expand Down

0 comments on commit f56ac3c

Please sign in to comment.