Skip to content

Commit

Permalink
[SPARK-46624][BUILD] Upgrade joda-time to 2.12.6
Browse files Browse the repository at this point in the history
### What changes were proposed in this pull request?
This pr aims to upgrade  joda-time  from 2.12.5 to 2.12.6

### Why are the changes needed?
The new version brings the following fixes:
- JodaOrg/joda-time#733
- JodaOrg/joda-time#755
- JodaOrg/joda-time#731

The full release notes as follows:
- https://github.com/JodaOrg/joda-time/releases/tag/v2.12.6

### Does this PR introduce _any_ user-facing change?
No

### How was this patch tested?
Pass GitHub Actions

### Was this patch authored or co-authored using generative AI tooling?
No

Closes #44626 from LuciferYang/SPARK-46624.

Authored-by: yangjie01 <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
  • Loading branch information
a0x8o committed Jan 8, 2024
1 parent 00bd1a5 commit 4e3d508
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ package org.apache.spark.scheduler.cluster.k8s

import java.util.concurrent.TimeUnit

import scala.collection.JavaConverters._
import scala.collection.mutable
import scala.jdk.CollectionConverters._

import io.fabric8.kubernetes.api.model.{PersistentVolumeClaim,
PersistentVolumeClaimBuilder, PodSpec, PodSpecBuilder, PodTemplateSpec}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ class StatefulSetAllocatorSuite extends SparkFunSuite with BeforeAndAfter {
snapshotsStore = new DeterministicExecutorPodsSnapshotsStore()
podsAllocatorUnderTest = new StatefulSetPodsAllocator(
conf, secMgr, executorBuilder, kubernetesClient, snapshotsStore, null)
when(schedulerBackend.getExecutorIds()).thenReturn(Seq.empty)
when(schedulerBackend.getExecutorIds).thenReturn(Seq.empty)
podsAllocatorUnderTest.start(TEST_SPARK_APP_ID, schedulerBackend)
}

Expand Down

0 comments on commit 4e3d508

Please sign in to comment.