Skip to content

Commit 9aa565d

Browse files
committed
OPCUA writer structured types
1 parent 7b20443 commit 9aa565d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/sfc-ipc/src/main/kotlin/com/amazonaws/sfc/ipc/extensions/GrpcValueFromNativeExt.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ object GrpcValueFromNativeExt {
418418
is Float -> channelValue(arrayListOf(*value.map { it as Float }.toTypedArray<Float>()), ts)
419419
is Instant -> channelValue(arrayListOf(*value.map { it as Instant }.toTypedArray<Instant>()), ts)
420420
is Int -> channelValue(arrayListOf(*value.map { it as Int }.toTypedArray<Int>()), ts)
421-
is Map<*, *> -> channelValue(arrayListOf(*value.map { it as LinkedHashMap<*, *> }.toTypedArray<LinkedHashMap<*, *>>()), ts)
421+
is Map<*, *> -> channelValue(arrayListOf(*value.map { it as LinkedHashMap<*, *> }.toTypedArray<Map<*, *>>()), ts)
422422
is Long -> channelValue(arrayListOf(*value.map { it as Long }.toTypedArray<Long>()), ts)
423423
is Short -> channelValue(arrayListOf(*value.map { it as Short }.toTypedArray<Short>()), ts)
424424
is String -> channelValue(arrayListOf(*value.map { it as String }.toTypedArray<String>()), ts)

0 commit comments

Comments
 (0)