From 17ef3371e7fae0dd098938a11d74c7761d594088 Mon Sep 17 00:00:00 2001 From: Benedikt Labrenz Date: Tue, 15 Jul 2025 11:51:41 +0200 Subject: [PATCH 1/3] add troubleshooting section on nipyapi error --- docs/modules/nifi/pages/troubleshooting/index.adoc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/modules/nifi/pages/troubleshooting/index.adoc b/docs/modules/nifi/pages/troubleshooting/index.adoc index 020770b3..0e0509cd 100644 --- a/docs/modules/nifi/pages/troubleshooting/index.adoc +++ b/docs/modules/nifi/pages/troubleshooting/index.adoc @@ -1,4 +1,5 @@ = Troubleshooting +:nipyapi: https://github.com/Chaffelson/nipyapi == Usage of EmptyDir volume "log" exceeds the limit @@ -71,3 +72,9 @@ metadata: nginx.ingress.kubernetes.io/session-cookie-name: "route" nginx.ingress.kubernetes.io/session-cookie-max-age: "172800" ---- + +== `packaging.version.InvalidVersion: Invalid version: '1.27.0-stackable0.0.0-dev'` when connecting to NiFi using `nipyapi`` + +When using {nipyapi}[nipyapi] with version `<= 0.19.0` some functions check the version of the NiFi instance resulting in an error where the custom version strings introduced in the SDP release 25.7 can't be parsed. + +Solution: Upgrade to `nipyapi >= 0.20.0` where this is fixed. From 3cc229eb58a285111a92cc7fb85def3e413c13a3 Mon Sep 17 00:00:00 2001 From: Benedikt Labrenz Date: Tue, 15 Jul 2025 16:14:05 +0200 Subject: [PATCH 2/3] fix syntax --- docs/modules/nifi/pages/troubleshooting/index.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/modules/nifi/pages/troubleshooting/index.adoc b/docs/modules/nifi/pages/troubleshooting/index.adoc index 0e0509cd..a6a27120 100644 --- a/docs/modules/nifi/pages/troubleshooting/index.adoc +++ b/docs/modules/nifi/pages/troubleshooting/index.adoc @@ -73,8 +73,8 @@ metadata: nginx.ingress.kubernetes.io/session-cookie-max-age: "172800" ---- -== `packaging.version.InvalidVersion: Invalid version: '1.27.0-stackable0.0.0-dev'` when connecting to NiFi using `nipyapi`` +== `packaging.version.InvalidVersion: Invalid version: '1.27.0-stackable0.0.0-dev'` when connecting to NiFi using `nipyapi` -When using {nipyapi}[nipyapi] with version `<= 0.19.0` some functions check the version of the NiFi instance resulting in an error where the custom version strings introduced in the SDP release 25.7 can't be parsed. +When using {nipyapi}[nipyapi] with version `< 0.20.0`, some functions check the version of the NiFi instance. This results in an error where the custom version strings introduced in SDP release 25.7 can't be parsed. Solution: Upgrade to `nipyapi >= 0.20.0` where this is fixed. From 8c1081e6bf3b19ba4e65f8d8cee6172dcfe86cfa Mon Sep 17 00:00:00 2001 From: Benedikt Labrenz Date: Tue, 15 Jul 2025 16:27:32 +0200 Subject: [PATCH 3/3] improve syntax --- docs/modules/nifi/pages/troubleshooting/index.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/modules/nifi/pages/troubleshooting/index.adoc b/docs/modules/nifi/pages/troubleshooting/index.adoc index a6a27120..a0c8118a 100644 --- a/docs/modules/nifi/pages/troubleshooting/index.adoc +++ b/docs/modules/nifi/pages/troubleshooting/index.adoc @@ -75,6 +75,6 @@ metadata: == `packaging.version.InvalidVersion: Invalid version: '1.27.0-stackable0.0.0-dev'` when connecting to NiFi using `nipyapi` -When using {nipyapi}[nipyapi] with version `< 0.20.0`, some functions check the version of the NiFi instance. This results in an error where the custom version strings introduced in SDP release 25.7 can't be parsed. +When using {nipyapi}[nipyapi] version `< 0.20.0`, some functions check the version of the NiFi instance. This results in an error where the custom version strings introduced in SDP release 25.7 can't be parsed. -Solution: Upgrade to `nipyapi >= 0.20.0` where this is fixed. +Solution: Upgrade to `nipyapi >= 0.20.0` where this is fixed. Our images are already using a version that is recent enough.