File tree Expand file tree Collapse file tree 3 files changed +5
-13
lines changed Expand file tree Collapse file tree 3 files changed +5
-13
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,8 @@ LAST_TAG=$(git tag | tail -n 1);
1212MAJOR=$( echo $LAST_TAG | sed -E ' s/v([0-9]+)\..*/\1/' ) ;
1313MINOR=$( echo $LAST_TAG | sed -E ' s/v[0-9]+\.([0-9]+)\..*/\1/' ) ;
1414PATCH=$( echo $LAST_TAG | sed -E ' s/v[0-9]+\.[0-9]+\.([0-9]+)-rc[0-9]+/\1/' ) ;
15- RC=0 ;
15+ RC=$( git tag | grep " v $MAJOR . $MINOR . $PATCH -rc " | wc -l | xargs || true ) ;
1616
17- if [ " $RELEASE_CANDIDATE " = true ]
18- then
19- RC=$( git tag | grep " v$MAJOR .$MINOR .$PATCH -rc" | wc -l | xargs || true) ;
20- fi
2117if [ " $VERSION_CHANGE " = " MINOR" ] && [ $RC = 0 ]
2218then
2319 MINOR=$(( MINOR+ 1 )) ;
Original file line number Diff line number Diff line change 1+ - Writer client for YDB topics
2+ - Fix: delete default timeout grpc.deadline
3+
14## v0.9.0-rc1
25- Topic Writer updated release candidate:
36 * Do not send messages that have a timeout by cancelToken.
Original file line number Diff line number Diff line change @@ -75,13 +75,6 @@ public override string CommandText
7575 }
7676 }
7777
78- /// <summary>
79- /// The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error.
80- /// Set to zero for infinity.
81- /// </summary>
82- /// <value>
83- /// The time (in seconds) to wait for the command to execute. The default value is 30 seconds.
84- /// </value>
8578 public override int CommandTimeout
8679 {
8780 get => _timeout ;
@@ -96,7 +89,7 @@ public override int CommandTimeout
9689 }
9790 }
9891
99- private int _timeout = 30 ;
92+ private int _timeout ;
10093
10194 public override CommandType CommandType { get ; set ; } = CommandType . Text ;
10295 public override UpdateRowSource UpdatedRowSource { get ; set ; }
You can’t perform that action at this time.
0 commit comments