We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca7cf63 commit 98d3feeCopy full SHA for 98d3fee
2 files changed
catalog-info.yaml
@@ -53,6 +53,9 @@ spec:
53
spec:
54
pipeline_file: .buildkite/pipeline.yml
55
repository: elastic/eland
56
+ env:
57
+ ELASTIC_SLACK_NOTIFICATIONS_ENABLED: 'true'
58
+ SLACK_NOTIFICATIONS_CHANNEL: '#devtools-notify'
59
teams:
60
ml-core: {}
61
devtools-team: {}
eland/operations.py
@@ -185,7 +185,7 @@ def _metric_agg_series(
185
else:
186
# If all results are float convert into float64
187
if all(isinstance(i, float) for i in results.values()):
188
- dtype: "DTypeLike" = np.float64
+ dtype: "DTypeLike | None" = np.float64
189
# If all results are int convert into int64
190
elif all(isinstance(i, int) for i in results.values()):
191
dtype = np.int64
0 commit comments