Skip to content

Commit 2957049

Browse files
committed
Merge pull request #192 from broadinstitute/da_propertyValueMapCastingError
add a catchall case to mappedPropVals.propertyValueMap
2 parents 95000a4 + 1381b27 commit 2957049

File tree

1 file changed

+1
-0
lines changed
  • src/main/scala/org/broadinstitute/dsde/firecloud/model

1 file changed

+1
-0
lines changed

src/main/scala/org/broadinstitute/dsde/firecloud/model/Profile.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ trait mappedPropVals {
132132
f.get(this) match {
133133
case x: String => f.getName -> x
134134
case y: Option[_] => f.getName -> y.asInstanceOf[Option[_]].getOrElse("").toString
135+
case z => f.getName -> z.toString
135136
}
136137
} toMap
137138
}

0 commit comments

Comments
 (0)