faxioman

Results 18 comments of faxioman

Hi @Strayer. Yes, you need to set the acl for the file to 'publicly shared'. You can set this behaviour for an entire buket using gsutil cli command: ``` gsutil...

Ehm ... sorry ... with the command above you set the permission for current files. This is the command for the default ACL: ``` gsutil defacl ch -u AllUsers:R gs://my-bucket...

When you create a bucket you can access to it via http using: ``` https://my-bucket.storage.googleapis.com/... ``` but also using: ``` https://storage.googleapis.com/my-bucket/... ``` Could this be helpful?

Don't worry Strayer, we'll be in touch after the operation ... and get well soon!

Yes, this behaviour is clear… but after informer.start inside an onerror handler, if I remove a k8s resource and recreate that resource the events delete/add are never fired.

@brendandburns ok, I'll check if an update event is raised. Anyway, I see that if I simply remove a crd (after an informer restart) the event delete is never fired.

We can conclude that the only working "out-of-the-box" swappable model is the Application model (which is the only covered by documentation). Probably, would be better to document this behaviour.

Why issue closed? I have the same problem ...

I see the Runner class of tornado 2.4.1 and has a new parameter in **init**: ``` def __init__(self, gen, deactivate_stack_context): ``` SyncRunner calls the super init in this way: ```...

I think i'm using sync_engine too. In my class: ``` class MeteoDataSetAPI(SocketConnection): ... @gen.sync_engine def on_event(self, name, *args, **kwargs): return super(MeteoDataSetAPI, self).on_event(name, *args, **kwargs) ``` Is it right?