Skip to content

Commit

Permalink
Disable object storage devices for now.
Browse files Browse the repository at this point in the history
Until we crack the problem of writing/reading to S3 using the droplet
library disable the use of these kind of devices.
  • Loading branch information
Marco van Wieringen committed Nov 30, 2014
1 parent 1f39563 commit a1ee16e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/stored/backends/object_store_device.c
Expand Up @@ -91,6 +91,11 @@ int object_store_device::d_open(const char *pathname, int flags, int mode)
dpl_vfile_flag_t dpl_flags;
dpl_option_t dpl_options;

#if 1
Mmsg1(errmsg, _("Object Storage devices are not yet supported, please disable %s\n"), dev_name);
return -1;
#endif

/*
* Initialize the droplet library when its not done previously.
*/
Expand Down

0 comments on commit a1ee16e

Please sign in to comment.