From e8a63e37581ec338985d19f6533d4b7c650bb17d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20Mili=C4=87?= Date: Sun, 21 Jun 2020 14:06:27 +0200 Subject: [PATCH] feature/MS SQL: The size (5000) given to the parameter 'parameters' exceeds the maximum allowed (4000) --- .../scala/code/methodrouting/MappedMethodRoutingProvider.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obp-api/src/main/scala/code/methodrouting/MappedMethodRoutingProvider.scala b/obp-api/src/main/scala/code/methodrouting/MappedMethodRoutingProvider.scala index 5d2f57107..9bc1f1da4 100644 --- a/obp-api/src/main/scala/code/methodrouting/MappedMethodRoutingProvider.scala +++ b/obp-api/src/main/scala/code/methodrouting/MappedMethodRoutingProvider.scala @@ -81,7 +81,7 @@ class MethodRouting extends MethodRoutingT with LongKeyedMapper[MethodRouting] w } object IsBankIdExactMatch extends MappedBoolean(this) object ConnectorName extends MappedString(this, 255) - object Parameters extends MappedString(this, 5000) + object Parameters extends MappedText(this) override def methodRoutingId: Option[String] = Option(MethodRoutingId.get) override def methodName: String = MethodName.get