Skip to content

SNOW-2865839: Bug in 4.1.0 - Mismatch between str and bytes in construction of SessionManager, encountered as TypeError when instantiated through s3_storage_client via write_pandas, introduced by 9c9be36 #4629

SNOW-2865839: Bug in 4.1.0 - Mismatch between str and bytes in construction of SessionManager, encountered as TypeError when instantiated through s3_storage_client via write_pandas, introduced by 9c9be36

SNOW-2865839: Bug in 4.1.0 - Mismatch between str and bytes in construction of SessionManager, encountered as TypeError when instantiated through s3_storage_client via write_pandas, introduced by 9c9be36 #4629

Workflow file for this run

name: Jira comment
on:
issue_comment:
types: [created]
jobs:
comment-issue:
runs-on: ubuntu-latest
steps:
- name: Jira login
uses: atlassian/gajira-login@master
env:
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }}
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}
- name: Extract issue from title
id: extract
env:
TITLE: "${{ github.event.issue.title }}"
run: |
jira=$(echo -n $TITLE | awk '{print $1}' | sed -e 's/://')
echo ::set-output name=jira::$jira
- name: Comment on issue
uses: atlassian/gajira-comment@master
if: startsWith(steps.extract.outputs.jira, 'SNOW-')
with:
issue: "${{ steps.extract.outputs.jira }}"
comment: "${{ github.event.comment.user.login }} commented:\n\n${{ github.event.comment.body }}\n\n${{ github.event.comment.html_url }}"