This will demonstrate how to upload build files from Travis CI to S3.
NOTE: Keys have been changed to protect the innocent.
Create an S3 ACL policy, see s3_policy.json for an example.
To terminate user sessions or queries on DB instances, Amazon RDS provides the following commands: | |
PROMPT> CALL mysql.rds_kill(thread-ID) | |
PROMPT> CALL mysql.rds_kill_query(thread-ID) | |
For example, to kill the session that is running on thread 99, you would type the following: | |
PROMPT> CALL mysql.rds_kill(99); | |
To kill the query that is running on thread 99, you would type the following: |
CREATE TABLE qrtz_blob_triggers ( | |
trigger_name character varying(80) NOT NULL, | |
trigger_group character varying(80) NOT NULL, | |
blob_data text, | |
sched_name character varying(120) DEFAULT 'TestScheduler'::character varying NOT NULL | |
); | |
CREATE TABLE qrtz_calendars ( | |
calendar_name character varying(80) NOT NULL, | |
calendar text NOT NULL, |
This will demonstrate how to upload build files from Travis CI to S3.
NOTE: Keys have been changed to protect the innocent.
Create an S3 ACL policy, see s3_policy.json for an example.
#coding: utf-8 | |
from cStringIO import StringIO | |
from email.mime.multipart import MIMEMultipart | |
from email.mime.text import MIMEText | |
from email.header import Header | |
from email import Charset | |
from email.generator import Generator | |
import smtplib | |
# Example address data |