diff options
author | adheli.tavares <adheli.tavares@est.tech> | 2024-04-24 10:27:48 +0100 |
---|---|---|
committer | adheli.tavares <adheli.tavares@est.tech> | 2024-04-24 10:29:02 +0100 |
commit | 29065eadcfd111c6fefecdbed38e3ef27bd068ea (patch) | |
tree | 82f09dd455bf70d7ea29fe0f9e6bf52eb0d10849 /policy-management/src/main/server-gen/bin/pdpd-configuration | |
parent | 5bd2e9091fa75bc41fce1667f5deb46ac5e94380 (diff) |
Fix topic configurations.
- adjust kafka configurations
- remove UEB references
Issue-ID: POLICY-4955
Change-Id: Ie3ff62a0ba5531ae4c0d123f214a50bb7f721807
Signed-off-by: adheli.tavares <adheli.tavares@est.tech>
Diffstat (limited to 'policy-management/src/main/server-gen/bin/pdpd-configuration')
-rw-r--r-- | policy-management/src/main/server-gen/bin/pdpd-configuration | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/policy-management/src/main/server-gen/bin/pdpd-configuration b/policy-management/src/main/server-gen/bin/pdpd-configuration index 5182f3ad..0be7cef3 100644 --- a/policy-management/src/main/server-gen/bin/pdpd-configuration +++ b/policy-management/src/main/server-gen/bin/pdpd-configuration @@ -38,9 +38,10 @@ function usage() { echo "" } -BUS_PORT=9092 +BUS_PORT=29092 +BUS_HOST=kafka REQUEST_ID="7f5474ca-16a9-42ac-abc0-d86f62296fbc" -TOPIC="PDPD-CONFIGURATION" +TOPIC="pdpd-configuration" # command line options parsing until [ -z "$1" ]; do @@ -88,7 +89,7 @@ until [ -z "$1" ]; do done if [ -z "${BUS_HOST}" ]; then - echo "An UEB/KAFKA server must be provided." + echo "A KAFKA server must be provided." echo usage exit 1 |