<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: Kafka producer/consumer with kerberos authentication not working,  Error while fetching metadata with correlation id 299 : {test=LEADER_NOT_AVAILABLE} in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243799#M205597</link>
    <description>&lt;P&gt;&lt;A rel="noopener noreferrer noopener noreferrer" href="http://@%20hoda%20moradi" target="_blank"&gt;&lt;EM&gt;@ hoda moradi&lt;/EM&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Any updates&lt;/EM&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 10 Mar 2019 15:36:55 GMT</pubDate>
    <dc:creator>Shelton</dc:creator>
    <dc:date>2019-03-10T15:36:55Z</dc:date>
    <item>
      <title>Kafka producer/consumer with kerberos authentication not working,  Error while fetching metadata with correlation id 299 : {test=LEADER_NOT_AVAILABLE}</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243786#M205584</link>
      <description>&lt;P&gt;I followed &lt;A href="https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.6.5/bk_security/content/secure-kafka-produce-events.html"&gt;Producing Events/Messages to Kafka on a Secured Cluster&lt;/A&gt;.&lt;/P&gt;&lt;P&gt; I am setting  export KAFKA_CLIENT_KERBEROS_PARAMS="-Djava.security.auth.login.config=/usr/hdp/current/kafka-broker/config/kafka_client_jaas.conf" &lt;/P&gt;&lt;P&gt;and passing --security-protocol SASL_PLAINTEXT my command looks like &lt;/P&gt;&lt;PRE&gt;./bin/kafka-console-producer.sh --broker-list &amp;lt;Brokker-hosts&amp;gt;:6667  --topic test  --security-protocol SASL_PLAINTEXT

&lt;/PRE&gt;&lt;P&gt;kafka_client_jaas.conf: &lt;/P&gt;&lt;PRE&gt;KafkaClient {

com.sun.security.auth.module.Krb5LoginModule required

useTicketCache=true

renewTicket=true

serviceName="kafka";

};
&lt;/PRE&gt;&lt;P&gt;kafka_jaas.conf:&lt;/P&gt;&lt;PRE&gt;KafkaServer {
    com.sun.security.auth.module.Krb5LoginModule required
    useKeyTab=true
    keyTab="/etc/security/keytabs/kafka.service.keytab"
    storeKey=true
    useTicketCache=false
    serviceName="kafka"
    principal="kafka/_host@EXAMPLE.COM";
    };
    KafkaClient {
    com.sun.security.auth.module.Krb5LoginModule required
    useTicketCache=true
    renewTicket=true
    serviceName="kafka";
    };
    Client {
    com.sun.security.auth.module.Krb5LoginModule required
    useKeyTab=true
    keyTab="/etc/security/keytabs/kafka.service.keytab"
    storeKey=true
    useTicketCache=false
    serviceName="zookeeper"
    principal="kafka/_host@EXAMPLE.COM";
    };
    com.sun.security.jgss.krb5.initiate {
    com.sun.security.auth.module.Krb5LoginModule required
    renewTGT=false
    doNotPrompt=true
    useKeyTab=true
    keyTab="/etc/security/keytabs/kafka.service.keytab"
    storeKey=true
    useTicketCache=false
    serviceName="kafka"
    principal="kafka/_host@EXAMPLE.COM";
    };
&lt;/PRE&gt;&lt;P&gt;When I run this I get the prompt to type my message but then I get:&lt;/P&gt;&lt;PRE&gt;19/02/07 13:35:52 WARN NetworkClient: Error while fetching metadata with correlation id 307 : {test=LEADER_NOT_AVAILABLE}

19/02/07 13:35:52 WARN NetworkClient: Error while fetching metadata with correlation id 308 : {test=LEADER_NOT_AVAILABLE}

19/02/07 13:35:52 WARN NetworkClient: Error while fetching metadata with correlation id 309 : {test=LEADER_NOT_AVAILABLE}

19/02/07 13:35:52 WARN NetworkClient: Error while fetching metadata with correlation id 310 : {test=LEADER_NOT_AVAILABLE}

19/02/07 13:35:52 WARN NetworkClient: Error while fetching metadata with correlation id 311 : {test=LEADER_NOT_AVAILABLE}

&lt;/PRE&gt;&lt;P&gt;my Kafka version is : 1.0.0&lt;/P&gt;&lt;P&gt;I made sure that topic "test" exists and I can get the leader ids when I run describe&lt;/P&gt;&lt;P&gt;How can I resolve this issue? &lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 04:04:16 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243786#M205584</guid>
      <dc:creator>hoda_moradi2014</dc:creator>
      <dc:date>2019-02-08T04:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: Kafka producer/consumer with kerberos authentication not working,  Error while fetching metadata with correlation id 299 : {test=LEADER_NOT_AVAILABLE}</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243787#M205585</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;A href="@hoda moradi"&gt; @hoda moradi&lt;/A&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Can you check these 2 properties in server.properties&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Please follow the below steps.&lt;/EM&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;EM&gt;Add the following lines in server.properties for the brokers file:&lt;/EM&gt;&lt;PRE&gt;&lt;EM&gt;listeners=PLAINTEXT://host.name:port
advertised.listeners=PLAINTEXT://host.name:port 
&lt;/EM&gt;&lt;/PRE&gt;&lt;P&gt;&lt;EM&gt;where &lt;CODE&gt;host.name&lt;/CODE&gt; is the IP address or host name of the Kafka broker.&lt;/EM&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;Restart the Kafka brokers and test.&lt;/EM&gt;&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Fri, 08 Feb 2019 04:27:01 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243787#M205585</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2019-02-08T04:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: Kafka producer/consumer with kerberos authentication not working,  Error while fetching metadata with correlation id 299 : {test=LEADER_NOT_AVAILABLE}</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243788#M205586</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/1271/sheltong.html" nodeid="1271"&gt;@Geoffrey Shelton Okot&lt;/A&gt; in the server.properties I see &lt;/P&gt;&lt;PRE&gt;listeners=SASL_PLAINTEXT://host.name:6667
advertised.listeners=SASL_PLAINTEXT://host.name:6667&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;Do I need to change them? The cluster is secured and we are using SASL_PLAINTEXT not PLAINTEXT &lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 04:39:20 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243788#M205586</guid>
      <dc:creator>hoda_moradi2014</dc:creator>
      <dc:date>2019-02-08T04:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: Kafka producer/consumer with kerberos authentication not working,  Error while fetching metadata with correlation id 299 : {test=LEADER_NOT_AVAILABLE}</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243789#M205587</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;A href="https://community.hortonworks.com/questions/238852/@hoda%20moradi"&gt;@hoda moradi&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Have you secured your kafka with SSL and Keberos?  Was it working before?&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 05:11:34 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243789#M205587</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2019-02-08T05:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: Kafka producer/consumer with kerberos authentication not working,  Error while fetching metadata with correlation id 299 : {test=LEADER_NOT_AVAILABLE}</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243790#M205588</link>
      <description>&lt;P&gt;&lt;A href="https://community.cloudera.com/users/1271/sheltong.html"&gt;@Geoffrey Shelton Okot&lt;/A&gt; Yes the Kafka cluster is secured with SASL and Kerberos. We just did this so it is the first time we are testing it. We followed Hortonwork's documentation to secure the cluster.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 05:14:01 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243790#M205588</guid>
      <dc:creator>hoda_moradi2014</dc:creator>
      <dc:date>2019-02-08T05:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: Kafka producer/consumer with kerberos authentication not working,  Error while fetching metadata with correlation id 299 : {test=LEADER_NOT_AVAILABLE}</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243791#M205589</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;A href="https://community.hortonworks.com/questions/238852/@hoda%20moradi"&gt;@hoda moradi&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Okay I am already seeing issues with your &lt;STRONG&gt;kafka_jaas.conf&lt;/STRONG&gt; there are too many entries. Can tokenize your server.properties  and share the entries&lt;/EM&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;EM&gt;listeners&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;advertised.listeners&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;sasl.enabled.mechanisms&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;sasl.kerberos.service.name&lt;/EM&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;EM&gt;Is it an HDP cluster if so version or standalone kafka cluster (how many nodes)&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 05:40:02 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243791#M205589</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2019-02-08T05:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: Kafka producer/consumer with kerberos authentication not working,  Error while fetching metadata with correlation id 299 : {test=LEADER_NOT_AVAILABLE}</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243792#M205590</link>
      <description>&lt;P&gt;&lt;A href="https://community.cloudera.com/users/1271/sheltong.html"&gt;@Geoffrey Shelton Okot&lt;/A&gt; &lt;/P&gt;&lt;P&gt;It is a HDP cluster version: 2.6.5.4-1. I have a Kafka cluster with 6 brokers.&lt;/P&gt;&lt;PRE&gt;listeners=SASL_PLAINTEXT://host.name:6667
advertised.listeners=SASL_PLAINTEXT://host.name:6667
sasl.enabled.mechanisms=GSSAPI
&lt;/PRE&gt;&lt;P&gt; I do not see "sasl.kerberos.service.name" in server.properties I do see it in kafka_jaas.conf and kafka_client_jaas.conf being set to 'kafka'&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 05:52:44 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243792#M205590</guid>
      <dc:creator>hoda_moradi2014</dc:creator>
      <dc:date>2019-02-08T05:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: Kafka producer/consumer with kerberos authentication not working,  Error while fetching metadata with correlation id 299 : {test=LEADER_NOT_AVAILABLE}</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243793#M205591</link>
      <description>&lt;P&gt;&lt;EM&gt; &lt;A href="https://community.hortonworks.com/questions/238852/@hoda%20moradi"&gt;@hoda moradi&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Your kafka_jaas.conf and contradicting entries 4 in number can you back up the current file and re-adjust the one I have attached on all the brokers if multimode.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Below is functioning SSL, Kerberos config &lt;/EM&gt;&lt;/P&gt;&lt;PRE&gt;#########################################################
# server.properties
#########################################################
listeners=PLAINTEXT://0.0.0.0:9092,SSL:0.0.0.0:9093,SASL_SSL://0.0.0.0:9094
advertised.listeners=PLAINTEXT://FQDN_Broker:9092,SSL://FQDN_Broker:9093,SASL_SSL://FQDN_Broker:9092

sasl.enabled.mechanisms=GSSAPI
sasl.kerberos.service.name=kafka &lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;Client&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;#########################################################
# kafka_client_jaas.conf:
#########################################################
KafkaClient {
com.sun.security.auth.module.Krb5LoginModule required
useTicketCache=true
renewTicket=true
serviceName="kafka";
}; &lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;Server&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;#########################################################
# kafka_jaas.conf
#########################################################
KafkaServer {
    com.sun.security.auth.module.Krb5LoginModule required
    useKeyTab=true
    storeKey=true
    keyTab="/etc/security/keytabs/kafka.service.keytab"
    useTicketCache=false
    serviceName="kafka"
    principal="kafka/_host@EXAMPLE.COM";
    }; &lt;/PRE&gt;&lt;P&gt;&lt;EM&gt;After these steps restart the Kafka broker(s) please revert&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 06:29:51 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243793#M205591</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2019-02-08T06:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: Kafka producer/consumer with kerberos authentication not working,  Error while fetching metadata with correlation id 299 : {test=LEADER_NOT_AVAILABLE}</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243794#M205592</link>
      <description>&lt;P&gt;We are using SASL and Kerberos not SSL. Do you have any functioning SASL and Kerberos config? &lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 06:47:39 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243794#M205592</guid>
      <dc:creator>hoda_moradi2014</dc:creator>
      <dc:date>2019-02-08T06:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: Kafka producer/consumer with kerberos authentication not working,  Error while fetching metadata with correlation id 299 : {test=LEADER_NOT_AVAILABLE}</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243795#M205593</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;A href="https://community.hortonworks.com/questions/238852/@hoda%20moradi"&gt;@hoda moradi&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Just omit the SSL_SASL entry  in the server.properties&lt;/EM&gt;&lt;/P&gt;&lt;PRE&gt;listeners=PLAINTEXT://0.0.0.0:9092,SASL://0.0.0.0:9093
advertised.listeners=PLAINTEXT://FQDN_Broker:9092,SASL://FQDN_Broker:9093&lt;/PRE&gt;&lt;P&gt;&lt;EM&gt;HTH &lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 07:06:09 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243795#M205593</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2019-02-08T07:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: Kafka producer/consumer with kerberos authentication not working,  Error while fetching metadata with correlation id 299 : {test=LEADER_NOT_AVAILABLE}</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243796#M205594</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;A href="https://community.hortonworks.com/questions/238852/@hoda%20moradi"&gt;@hoda moradi&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Any updates?&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 17:35:27 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243796#M205594</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2019-02-08T17:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: Kafka producer/consumer with kerberos authentication not working,  Error while fetching metadata with correlation id 299 : {test=LEADER_NOT_AVAILABLE}</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243797#M205595</link>
      <description>&lt;P&gt;&lt;A href="https://community.cloudera.com/users/1271/sheltong.html"&gt;@Geoffrey Shelton Okot&lt;/A&gt;&lt;/P&gt;&lt;P&gt;No I still get the same error.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 22:34:36 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243797#M205595</guid>
      <dc:creator>hoda_moradi2014</dc:creator>
      <dc:date>2019-02-08T22:34:36Z</dc:date>
    </item>
    <item>
      <title>Re: Kafka producer/consumer with kerberos authentication not working,  Error while fetching metadata with correlation id 299 : {test=LEADER_NOT_AVAILABLE}</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243798#M205596</link>
      <description>&lt;P&gt;&lt;A href="https://community.hortonworks.com/questions/238852/@hoda%20moradi"&gt;&lt;EM&gt;@hoda moradi&lt;/EM&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Can you share the below configs?&lt;/EM&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;EM&gt; Listener entries in server.properties&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;kafka_client_jaas.conf&lt;BR /&gt;&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;kafka_jaas.conf&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;&lt;/EM&gt;&lt;EM&gt;&lt;P style="display: inline !important;"&gt;/var/log/kafka/&lt;/P&gt;server.log&lt;/EM&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;EM&gt;Thanks &lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 23:36:58 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243798#M205596</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2019-02-08T23:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Kafka producer/consumer with kerberos authentication not working,  Error while fetching metadata with correlation id 299 : {test=LEADER_NOT_AVAILABLE}</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243799#M205597</link>
      <description>&lt;P&gt;&lt;A rel="noopener noreferrer noopener noreferrer" href="http://@%20hoda%20moradi" target="_blank"&gt;&lt;EM&gt;@ hoda moradi&lt;/EM&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Any updates&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Mar 2019 15:36:55 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kafka-producer-consumer-with-kerberos-authentication-not/m-p/243799#M205597</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2019-03-10T15:36:55Z</dc:date>
    </item>
  </channel>
</rss>

