Skip to content

Commit 8bfd3dc

Browse files
committed
NSFS - supporting GPFS DL - encryption
Signed-off-by: jackyalbo <[email protected]>
1 parent bbb342f commit 8bfd3dc

File tree

8 files changed

+566
-492
lines changed

8 files changed

+566
-492
lines changed

.travis/deploy_minikube.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ set -x
1515
# https://github.com/jaegertracing/jaeger-operator/blob/master/.travis/setupMinikube.sh
1616

1717
export MINIKUBE_VERSION=v1.8.2
18-
export KUBERNETES_VERSION=v1.17.3
18+
export KUBERNETES_VERSION=v1.23.12
1919

2020
source /etc/os-release
2121

src/endpoint/s3/s3_errors.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -536,6 +536,7 @@ S3Error.RPC_ERRORS_TO_S3 = Object.freeze({
536536
INVALID_RANGE: S3Error.InvalidRange,
537537
INVALID_OBJECT_STATE: S3Error.InvalidObjectState,
538538
INTERNAL_ERROR: S3Error.InternalError,
539+
SERVER_SIDE_ENCRYPTION_CONFIGURATION_NOT_FOUND_ERROR: S3Error.ServerSideEncryptionConfigurationNotFoundError,
539540
});
540541

541542
exports.S3Error = S3Error;

src/native/asm.gypi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
{
33
'conditions': [
44

5-
[ 'node_arch=="x64"', {
6-
'defines': ['HAVE_AS_KNOWS_AVX512', 'HAVE_AS_KNOWS_SHANI'],
7-
}],
8-
95
# LINUX
106
[ 'OS=="linux"', {
117
'conditions': [
128
[ 'node_arch=="x64"', {
9+
'defines': [
10+
'HAVE_AS_KNOWS_AVX512',
11+
'HAVE_AS_KNOWS_SHANI',
12+
],
1313
'rules': [{
1414
'rule_name': 'assemble',
1515
'extension': 'asm',

0 commit comments

Comments
 (0)