Skip to content

Commit 088bc77

Browse files
MQ MFT 9.3.5.0 Updates
1 parent 0ea5097 commit 088bc77

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Dockerfile-agent

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
#© Copyright IBM Corporation 2020, 2023
2+
#© Copyright IBM Corporation 2020, 2024
33
#
44
#Licensed under the Apache License, Version 2.0 (the "License");
55
#you may not use this file except in compliance with the License.
@@ -181,7 +181,7 @@ RUN mkdir -p $BFG_DATA \
181181

182182
# Copy the Bridge Credential Exit into container.
183183
COPY --from=pbaexitbuilder /credentialsexit/BridgeCredentialExit/bin/com.ibm.wmq.bridgecredentialexit.jar /customexits/mqft/pbaexit/com.ibm.wmq.bridgecredentialexit.jar
184-
COPY ./credentialsexit/BridgeCredentialExit/thirdparty/json-20240205.jar /customexits/mqft/pbaexit/json-20240205.jar
184+
COPY ./credentialsexit/BridgeCredentialExit/thirdparty/json-20240205.jar /customexits/mqft/pbaexit/org.json.jar
185185

186186
# Set path so that we can run our programs
187187
ENV PATH=$PATH:/opt/mqm/mqft/bin:/opt/mqm/mqft/java/jre64/jre/bin:/opt/mqm/bin:/run

cmd/runagent/agentconfig.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ func setupAgent(agentConfig string, bfgDataPath string, coordinationQMgr string)
245245
}
246246

247247
// Ready to execute the command
248-
if cmdSetup == true {
248+
if cmdSetup {
249249
// Reuse the same buffer
250250
cmdCrtAgnt.Stdout = &outb
251251
cmdCrtAgnt.Stderr = &errb

cmd/runagent/constants.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ const PBA_CUSTOM_CRED_EXIT_NAME = "com.ibm.wmq.bridgecredentialexit.jar"
2828
const PBA_CUSTOM_CRED_EXIT = "/customexits/mqft/pbaexit/com.ibm.wmq.bridgecredentialexit.jar"
2929

3030
// Third party jar used for reading JSON formatted data
31-
const PBA_CUSTOM_CRED_DEPEND_LIB_NAME = "json-20210307.jar"
31+
const PBA_CUSTOM_CRED_DEPEND_LIB_NAME = "org.json.jar"
3232

3333
// Source path of third party JSON jar
34-
const PBA_CUSTOM_CRED_DEPEND_LIB = "/customexits/mqft/pbaexit/json-20210307.jar"
34+
const PBA_CUSTOM_CRED_DEPEND_LIB = "/customexits/mqft/pbaexit/org.json.jar"
3535

3636
// Path where files will be written to or read from. If a external storage is mounted
3737
// to this path, then files will be written/read from the external storage otherwise

0 commit comments

Comments
 (0)