src/main/java/com/amazonaws/services/dynamodbv2/util/TableHelper.java [132:142]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if(TableStatus.ACTIVE.toString().equals(status)) {
                return;
            }
            if(TableStatus.DELETING.toString().equals(status)) {
                throw new ResourceInUseException("Table " + tableName + " is " + status + ", and waiting for it to become ACTIVE is not useful.");
            }
            Thread.sleep(10 * 1000);
            elapsedMs = System.currentTimeMillis() - startTimeMs; 
        } while(elapsedMs / 1000.0 < waitTimeSeconds);
        
        throw new ResourceInUseException("Table " + tableName + " did not become ACTIVE after " + waitTimeSeconds + " seconds.");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/amazonaws/services/dynamodbv2/util/TableHelper.java [159:169]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if(TableStatus.ACTIVE.toString().equals(status)) {
                return;
            }
            if(TableStatus.DELETING.toString().equals(status)) {
                throw new ResourceInUseException("Table " + tableName + " is " + status + ", and waiting for it to become ACTIVE is not useful.");
            }
            Thread.sleep(10 * 1000);
            elapsedMs = System.currentTimeMillis() - startTimeMs; 
        } while(elapsedMs / 1000.0 < waitTimeSeconds);
        
        throw new ResourceInUseException("Table " + tableName + " did not become ACTIVE after " + waitTimeSeconds + " seconds.");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



