Skip to content

Commit 86e6faa

Browse files
committed
Fix the bug where xdqp setting is not working for Default group
1 parent 66fd83c commit 86e6faa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

charts/templates/statefulset.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ spec:
144144
echo "${TIMESTAMP} $@" > /proc/$pid/fd/1
145145
}
146146
log "Info: [poststart] Begin Poststart Hook Execution"
147-
if [[ $MARKLOGIC_GROUP == "Default" || $POD_NAME != *-0 ]]; then
148-
log "Info: [poststart] This is not a bootstrap host or group specified is Default"
147+
if [[ $POD_NAME != *-0 ]]; then
148+
log "Info: [poststart] Skipping group configuration."
149149
else
150150
while [ ! -f /var/opt/MarkLogic/ready ]; do
151151
log "[poststart] wait for marklogic server to be ready"

0 commit comments

Comments
 (0)