src/java/detectors/amazon_sqs_enable_long_polling/AmazonSqsEnableLongPollingCompliant.java [39:47]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                    String queueNamePattern,
                                    int numOfQueues,
                                    String queue_url) {

        Map<String, String> attributes = new HashMap<String, String>();
        attributes.put("FifoQueue", "true");
        attributes.put("ContentBasedDeduplication", "true");
        attributes.put("DelaySeconds", "0");
        attributes.put("MessageRetentionPeriod", "86400"); // this is 24 shours
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/java/detectors/amazon_sqs_enable_long_polling/AmazonSqsEnableLongPollingNoncompliant.java [39:47]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                String queueNamePattern,
                                                int numOfQueues,
                                                String queue_url) {

        Map<String, String> attributes = new HashMap<String, String>();
        attributes.put("FifoQueue", "true");
        attributes.put("ContentBasedDeduplication", "true");
        attributes.put("DelaySeconds", "0");
        attributes.put("MessageRetentionPeriod", "86400"); // this is 24 shours
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



