Hi
I am running with jclouds version 1.8 and was curious if any other people
have been hitting the default 60 minute token expiration. If someone has
experienced this, what is a known work around? I know this isn't an
openstack email list but but if you [1] issue a new connection to openstack
through jclouds, will this recreate a new token? Or [2] would it be better
to close the current connection and then connect again?
[1] CloudWrite( ... )
{
..
..
putBlob( ... );
rc = handle an exception from put;
if rc equals any kind of fail
connect( ... )
retry putBlob( ... )
} //end CloudWrite
or
[2] CloudWrite( ... )
{
..
..
putBlob( ... );
rc = handle an exception from put;
if rc equals any kind of fail
close cloud connection
connect
retry putBlob( ... )
} //end CloudWrite
Thanks,
Forrest T.