Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for res_status (0.17 sec)

  1. cmd/bucket-replication-utils.go

    		default:
    			replStatus := getCompositeReplicationStatus(rs.Targets)
    			// return REPLICA status if replica received timestamp is later than replication timestamp
    			// provided object replication completed for all targets.
    			if rs.ReplicaTimeStamp.Equal(timeSentinel) || rs.ReplicaTimeStamp.IsZero() {
    				return replStatus
    			}
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 26.2K bytes
    - Viewed (0)
  2. docs/site-replication/run-multi-site-ldap.sh

    if [ $? -ne 0 ]; then
    	echo "expecting tag removal to be successful. exiting.."
    	exit_1
    fi
    sleep 5
    
    replStatus_minio2=$(./mc stat minio2/newbucket/README.md --json | jq -r .replicationStatus)
    if [ $? -ne 0 ]; then
    	echo "expecting object to be present. exiting.."
    	exit_1
    fi
    
    if [ ${replStatus_minio2} != "COMPLETED" ]; then
    	echo "expected tag removal to have replicated, exiting..."
    	exit_1
    fi
    
    Shell Script
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Feb 14 04:51:23 GMT 2024
    - 10K bytes
    - Viewed (1)
  3. docs/site-replication/run-multi-site-minio-idp.sh

    if [ $? -ne 0 ]; then
    	echo "expecting tag removal to be successful. exiting.."
    	exit_1
    fi
    sleep 5
    
    replStatus_minio2=$(./mc stat minio2/newbucket/README.md --json | jq -r .replicationStatus)
    if [ $? -ne 0 ]; then
    	echo "expecting object to be present. exiting.."
    	exit_1
    fi
    
    if [ ${replStatus_minio2} != "COMPLETED" ]; then
    	echo "expected tag removal to have replicated, exiting..."
    	exit_1
    fi
    
    Shell Script
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Mar 07 00:19:24 GMT 2024
    - 11.9K bytes
    - Viewed (0)
Back to top