Skip to content

Commit d1587e3

Browse files
committed
fix
1 parent 52cdf4e commit d1587e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • master/src/main/scala/org/apache/celeborn/service/deploy/master/tags

master/src/main/scala/org/apache/celeborn/service/deploy/master/tags/TagsManager.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class TagsManager(configService: Option[ConfigService]) extends Logging {
7272
val storeTags = tagStore.map(_.asScala.collect {
7373
case (tag, workerIds) if workerIds.contains(worker.toUniqueId) => tag
7474
}.toSet).getOrElse(Set.empty)
75-
storeTags ++ worker.tags
75+
storeTags ++ worker.tags.asScala
7676
}
7777

7878
def getTagsForCluster: Set[String] = {

0 commit comments

Comments
 (0)