Skip to content

Commit

Permalink
Disable elasto storage devices for now.
Browse files Browse the repository at this point in the history
Until we crack the problem of writing/reading to Azure using the
libelasto_file library disable the use of these kind of devices.
  • Loading branch information
Marco van Wieringen committed Nov 30, 2014
1 parent a1ee16e commit f09d5cf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/stored/backends/elasto_device.c
Expand Up @@ -60,6 +60,11 @@ int elasto_device::d_open(const char *pathname, int flags, int mode)
struct elasto_fauth auth;
struct elasto_fstat efstat;

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

if (!m_elasto_configstring) {
char *bp, *next_option;

Expand Down

0 comments on commit f09d5cf

Please sign in to comment.