diff --git a/modules/cloudinary_stream_wrapper/src/StreamWrapper/CloudinaryStreamWrapper.php b/modules/cloudinary_stream_wrapper/src/StreamWrapper/CloudinaryStreamWrapper.php
index c2461ed..0414326 100644
--- a/modules/cloudinary_stream_wrapper/src/StreamWrapper/CloudinaryStreamWrapper.php
+++ b/modules/cloudinary_stream_wrapper/src/StreamWrapper/CloudinaryStreamWrapper.php
@@ -137,11 +137,6 @@ class CloudinaryStreamWrapper implements StreamWrapperInterface {
    * Load file or directory resource for Cloudinary.
    */
   protected function loadResource($uri, $reset = TRUE) {
-    static $resources;
-    if (isset($resources[$uri])) {
-      return $resources[$uri];
-    }
-
     // Process image style.
     $paths = $this->imageStylePaths($uri);
     if (!empty($paths)) {
@@ -210,20 +205,14 @@ class CloudinaryStreamWrapper implements StreamWrapperInterface {
         // Use raw image.
       }
     }
-    $resources[$uri] = $this->resource;
 
-    return $resources[$uri];
+    return $this->resource;
   }
 
   /**
    * Get file stream data from Cloudinary by http url.
    */
   protected function streamReadCloudinary() {
-    static $data;
-    if (isset($data[$this->uri])) {
-      return $data[$this->uri];
-    }
-
     $resource = $this->loadResource($this->uri);
     if (!$resource || empty($resource['url'])) {
       return FALSE;
@@ -233,13 +222,11 @@ class CloudinaryStreamWrapper implements StreamWrapperInterface {
       $client = \Drupal::httpClient();
       $request = $client->request('GET', $resource['url']);
       // Expected result.
-      $data[$this->uri] = $request->getBody();
+      return $request->getBody();
     }
     catch (\Exception $e) {
       watchdog_exception('cloudinary_stream_wrapper', $e);
     }
-
-    return $data[$this->uri];
   }
 
   /**
