File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
core/external_sources/s3/ut
library/yql/providers/common/http_gateway Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ NO_CHECK_IMPORTS()
4
4
5
5
DATA(arcadia/ydb/core/external_sources/s3/ut/docker-compose.yml)
6
6
ENV(COMPOSE_PROJECT_NAME =s3)
7
+ ENV(TZ ="UTC+13")
7
8
8
9
IF (AUTOCHECK)
9
10
# Temporarily disable these tests due to infrastructure incompatibility
Original file line number Diff line number Diff line change 1
1
LIBRARY()
2
2
3
+ ENV(TZ ="UTC+23")
4
+
3
5
SRCS(
4
6
yql_aws_signature.cpp
5
7
yql_http_default_retry_policy.cpp
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ TString TAwsSignature::GetXAmzContentSha256() const {
67
67
}
68
68
69
69
TString TAwsSignature::GetAmzDate () const {
70
- return CurrentTime.FormatLocalTime (" %Y%m%dT%H%M%SZ" );
70
+ return CurrentTime.FormatGmTime (" %Y%m%dT%H%M%SZ" );
71
71
}
72
72
73
73
TString TAwsSignature::GetContentType () const {
@@ -112,7 +112,7 @@ TString TAwsSignature::CalcSignature() const {
112
112
}
113
113
114
114
TString TAwsSignature::GetDate () const {
115
- return CurrentTime.FormatLocalTime (" %Y%m%d" );
115
+ return CurrentTime.FormatGmTime (" %Y%m%d" );
116
116
}
117
117
118
118
TString TAwsSignature::HmacSHA256 (TStringBuf key, TStringBuf data) {
You can’t perform that action at this time.
0 commit comments